2021-02-23 18:03:37 +08:00
|
|
|
|
<ui:Page
|
|
|
|
|
x:Class="BililiveRecorder.WPF.Pages.ToolboxAutoFixPage"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:ui="http://schemas.modernwpf.com/2019"
|
|
|
|
|
xmlns:l="https://github.com/XAMLMarkupExtensions/WPFLocalizationExtension"
|
|
|
|
|
l:LocalizeDictionary.DesignCulture=""
|
|
|
|
|
l:ResxLocalizationProvider.DefaultAssembly="BililiveRecorder.WPF"
|
|
|
|
|
l:ResxLocalizationProvider.DefaultDictionary="Strings"
|
|
|
|
|
xmlns:local="clr-namespace:BililiveRecorder.WPF.Pages"
|
2021-02-27 20:44:04 +08:00
|
|
|
|
xmlns:model="clr-namespace:BililiveRecorder.WPF.Models"
|
2021-04-14 23:46:24 +08:00
|
|
|
|
xmlns:c="clr-namespace:BililiveRecorder.WPF.Converters"
|
2021-04-23 18:51:27 +08:00
|
|
|
|
xmlns:t="clr-namespace:BililiveRecorder.ToolBox.Commands;assembly=BililiveRecorder.ToolBox"
|
|
|
|
|
xmlns:tr="clr-namespace:BililiveRecorder.ToolBox.ProcessingRules;assembly=BililiveRecorder.ToolBox"
|
2021-02-27 20:44:04 +08:00
|
|
|
|
mc:Ignorable="d" DataContext="{x:Null}"
|
2021-02-27 13:24:18 +08:00
|
|
|
|
d:DesignHeight="600" d:DesignWidth="900"
|
2021-02-23 18:03:37 +08:00
|
|
|
|
Title="ToolboxAutoFixPage">
|
2021-04-22 22:40:40 +08:00
|
|
|
|
<Border Background="Transparent" AllowDrop="True" Drop="FileNameTextBox_Drop">
|
|
|
|
|
<Grid Margin="20" >
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<DockPanel Margin="0,0,0,10">
|
|
|
|
|
<Button VerticalAlignment="Bottom" DockPanel.Dock="Right" Content="修复失败?">
|
|
|
|
|
<ui:FlyoutService.Flyout>
|
|
|
|
|
<ui:Flyout Placement="LeftEdgeAlignedTop">
|
|
|
|
|
<StackPanel>
|
|
|
|
|
<TextBlock Text="如果修复出错、或在修复后依旧有问题"/>
|
|
|
|
|
<TextBlock Text="请发邮件到 rec@danmuji.org 反馈"/>
|
|
|
|
|
<TextBlock Text="在邮件内附上此处导出的分析数据"/>
|
|
|
|
|
<TextBlock Text="并尽量详细描述视频的问题、所使用的录播姬版本"/>
|
|
|
|
|
<TextBlock Text="请分析未经修复的原始文件,而不是录播姬修复后的文件"/>
|
|
|
|
|
<TextBlock><Hyperlink NavigateUri=""><Run Text="更多信息请点击这里"/></Hyperlink></TextBlock>
|
|
|
|
|
<Button Margin="0,15,0,10" HorizontalAlignment="Center" Click="Export_Button_Click">
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<ui:PathIcon Margin="0,0,5,0" Style="{StaticResource PathIconDataExport}"/>
|
|
|
|
|
<TextBlock Text="导出原始分析数据"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Button>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</ui:Flyout>
|
|
|
|
|
</ui:FlyoutService.Flyout>
|
|
|
|
|
</Button>
|
|
|
|
|
<Button VerticalAlignment="Bottom" DockPanel.Dock="Right" Margin="5,0" Click="Fix_Button_Click">
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<ui:PathIcon Height="14" Margin="0,0,5,0" Style="{StaticResource PathIconDataAutoFix}"/>
|
|
|
|
|
<TextBlock Text="修复"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Button>
|
|
|
|
|
<Button VerticalAlignment="Bottom" DockPanel.Dock="Right" Click="Analyze_Button_Click">
|
|
|
|
|
<StackPanel Orientation="Horizontal">
|
|
|
|
|
<ui:PathIcon Height="14" Margin="0,0,5,0" Style="{StaticResource PathIconDataMagnifyScan}"/>
|
|
|
|
|
<TextBlock Text="分析"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</Button>
|
|
|
|
|
<Button VerticalAlignment="Bottom" DockPanel.Dock="Right" Margin="0,0,5,0" Content="选择..." Click="SelectFile_Button_Click"/>
|
|
|
|
|
<TextBox ui:ControlHelper.PlaceholderText="FLV 文件" ui:TextBoxHelper.IsDeleteButtonVisible="False" x:Name="FileNameTextBox" />
|
|
|
|
|
</DockPanel>
|
|
|
|
|
<Border Grid.Row="1" BorderThickness="1" CornerRadius="5" x:Name="analyzeResultDisplayArea" DataContext="{x:Null}"
|
2021-02-27 13:24:18 +08:00
|
|
|
|
Background="{DynamicResource SystemControlBackgroundAltHighBrush}"
|
|
|
|
|
BorderBrush="{DynamicResource SystemControlBackgroundAccentBrush}">
|
2021-04-22 22:40:40 +08:00
|
|
|
|
<Border.Resources>
|
|
|
|
|
<DataTemplate x:Key="NullAnalyzeResult">
|
|
|
|
|
<StackPanel Margin="16">
|
|
|
|
|
<TextBlock Text="点击分析按钮开始分析" FontSize="26" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
|
|
<TextBlock Text="注:不分析也可以进行修复操作" VerticalAlignment="Center" HorizontalAlignment="Center"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
</DataTemplate>
|
2021-04-23 18:51:27 +08:00
|
|
|
|
<DataTemplate x:Key="FlvStatsPanel" DataType="{x:Type tr:FlvStats}">
|
|
|
|
|
<Grid>
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<TextBlock Grid.Row="0" HorizontalAlignment="Center" Text="{Binding FrameCount,StringFormat=帧数量 {0} 个}"/>
|
|
|
|
|
<TextBlock Grid.Row="1" HorizontalAlignment="Center" Text="{Binding FramePerSecond,StringFormat=平均FPS {0:F2}}"/>
|
|
|
|
|
<ListView Grid.Row="2" ItemsSource="{Binding FrameDurations}" Margin="5" BorderThickness="1"
|
|
|
|
|
BorderBrush="{DynamicResource SystemControlBackgroundAccentBrush}">
|
|
|
|
|
<ListView.Resources>
|
|
|
|
|
<!-- 忽略此处的一个 Error,是 Visual Studio 的 bug -->
|
|
|
|
|
<!-- Ignore the following Error, caused by Visual Studio bug -->
|
|
|
|
|
<ResourceDictionary Source="pack://application:,,,/ModernWpf;component/DensityStyles/Compact.xaml" />
|
|
|
|
|
</ListView.Resources>
|
|
|
|
|
<ListView.View>
|
|
|
|
|
<GridView AllowsColumnReorder="False">
|
|
|
|
|
<GridViewColumn Header="帧时长" DisplayMemberBinding="{Binding Key,StringFormat=\{0\} ms}"/>
|
|
|
|
|
<GridViewColumn Header="帧数量" DisplayMemberBinding="{Binding Value}"/>
|
|
|
|
|
</GridView>
|
|
|
|
|
</ListView.View>
|
|
|
|
|
</ListView>
|
|
|
|
|
</Grid>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
<DataTemplate x:Key="NormalAnalyzeResult" DataType="{x:Type t:AnalyzeResponse}">
|
2021-04-22 22:40:40 +08:00
|
|
|
|
<Grid Margin="5">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
2021-04-23 18:51:27 +08:00
|
|
|
|
<RowDefinition Height="Auto"/>
|
2021-04-22 22:40:40 +08:00
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
2021-04-23 18:51:27 +08:00
|
|
|
|
<TextBox Grid.Row="0" IsReadOnly="True" Text="{Binding InputPath}"/>
|
2021-04-22 22:40:40 +08:00
|
|
|
|
<TextBlock Grid.Row="1" HorizontalAlignment="Center" FontSize="24" Text="无需修复" Foreground="Green"
|
2021-02-27 20:44:04 +08:00
|
|
|
|
Visibility="{Binding NeedFix,Converter={StaticResource InvertBooleanToVisibilityCollapsedConverter}}"/>
|
2021-04-22 22:40:40 +08:00
|
|
|
|
<TextBlock Grid.Row="1" HorizontalAlignment="Center" FontSize="24" Text="需要修复" Foreground="Red"
|
2021-02-27 20:44:04 +08:00
|
|
|
|
Visibility="{Binding NeedFix,Converter={StaticResource BooleanToVisibilityCollapsedConverter}}"/>
|
2021-04-22 22:40:40 +08:00
|
|
|
|
<StackPanel Grid.Row="2" HorizontalAlignment="Center"
|
2021-02-27 20:44:04 +08:00
|
|
|
|
Visibility="{Binding Unrepairable,Converter={StaticResource BooleanToVisibilityCollapsedConverter}}">
|
2021-04-22 22:40:40 +08:00
|
|
|
|
<TextBlock HorizontalAlignment="Center" FontSize="20" Text="文件内存在录播姬无法自动修复的问题" Foreground="Red"/>
|
|
|
|
|
<TextBlock HorizontalAlignment="Center" Text="请点击 修复失败? 按钮并反馈本问题"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<StackPanel Grid.Row="3" HorizontalAlignment="Center" Margin="10">
|
|
|
|
|
<TextBlock Text="{Binding OutputFileCount,StringFormat=修复将会输出 {0} 个文件}" Margin="0,0,0,5"/>
|
|
|
|
|
<TextBlock Text="{Binding IssueTypeTimestampOffset,StringFormat=时间戳错位问题 {0} 处}"/>
|
|
|
|
|
<TextBlock Text="{Binding IssueTypeTimestampJump,StringFormat=时间戳跳变问题 {0} 处}"/>
|
|
|
|
|
<TextBlock Text="{Binding IssueTypeDecodingHeader,StringFormat=分辨率、解码问题 {0} 处}"/>
|
|
|
|
|
<TextBlock Text="{Binding IssueTypeRepeatingData,StringFormat=重复片段 {0} 处}"/>
|
|
|
|
|
<TextBlock Text="{Binding IssueTypeOther,StringFormat=其他问题 {0} 处}"/>
|
|
|
|
|
<TextBlock Text="{Binding IssueTypeUnrepairable,StringFormat=无法修复的问题 {0} 处}"/>
|
|
|
|
|
</StackPanel>
|
2021-04-23 18:51:27 +08:00
|
|
|
|
<Grid Grid.Row="4" Margin="10">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="Auto"/>
|
|
|
|
|
<RowDefinition Height="*"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
<ColumnDefinition Width="Auto"/>
|
|
|
|
|
<ColumnDefinition Width="*"/>
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<StackPanel HorizontalAlignment="Center" Grid.ColumnSpan="3">
|
|
|
|
|
<TextBlock HorizontalAlignment="Center" FontSize="20" Text="统计数据"/>
|
|
|
|
|
<TextBlock HorizontalAlignment="Center" Text="仅供参考,有问题的文件的统计可能不准确"/>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
<Separator Grid.Column="1" Grid.Row="1" Grid.RowSpan="2" Style="{StaticResource {x:Static ToolBar.SeparatorStyleKey}}" />
|
|
|
|
|
<TextBlock Grid.Row="1" Grid.Column="0" TextAlignment="Center" FontSize="16" Text="视频"/>
|
|
|
|
|
<TextBlock Grid.Row="1" Grid.Column="2" TextAlignment="Center" FontSize="16" Text="音频"/>
|
|
|
|
|
<ContentControl Grid.Row="2" Grid.Column="0" Content="{Binding VideoStats}" ContentTemplate="{StaticResource FlvStatsPanel}"/>
|
|
|
|
|
<ContentControl Grid.Row="2" Grid.Column="2" Content="{Binding AudioStats}" ContentTemplate="{StaticResource FlvStatsPanel}"/>
|
|
|
|
|
</Grid>
|
2021-04-22 22:40:40 +08:00
|
|
|
|
</Grid>
|
|
|
|
|
</DataTemplate>
|
|
|
|
|
<c:NullValueTemplateSelector x:Key="SelectorTemplate" Normal="{StaticResource NormalAnalyzeResult}" Null="{StaticResource NullAnalyzeResult}"/>
|
|
|
|
|
</Border.Resources>
|
|
|
|
|
<ContentControl Content="{Binding}" ContentTemplateSelector="{StaticResource SelectorTemplate}"/>
|
|
|
|
|
</Border>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Border>
|
2021-02-23 18:03:37 +08:00
|
|
|
|
</ui:Page>
|