mirror of
https://github.com/wagesj45/butterflow-ui.git
synced 2024-12-22 09:12:42 -06:00
Updating Compiled Libraries
Updating to the newest version of butterflow.
This commit is contained in:
parent
13c4225fde
commit
f912673f5f
352 changed files with 21285 additions and 313 deletions
|
@ -35,6 +35,8 @@
|
||||||
<StackPanel Grid.Row="0" Grid.Column="1" VerticalAlignment="Center">
|
<StackPanel Grid.Row="0" Grid.Column="1" VerticalAlignment="Center">
|
||||||
<TextBlock HorizontalAlignment="Center">
|
<TextBlock HorizontalAlignment="Center">
|
||||||
<Hyperlink NavigateUri="https://github.com/wagesj45" RequestNavigate="Hyperlink_RequestNavigate">Jordan Wages</Hyperlink>
|
<Hyperlink NavigateUri="https://github.com/wagesj45" RequestNavigate="Hyperlink_RequestNavigate">Jordan Wages</Hyperlink>
|
||||||
|
|
|
||||||
|
<Hyperlink NavigateUri="https://www.paypal.me/wagesj45" RequestNavigate="Hyperlink_RequestNavigate"><TextBlock Text="{x:Static loc:Localization.DonateLabel}" /></Hyperlink>
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<Label Grid.Row="1" Grid.Column="0" VerticalAlignment="Center" Content="{x:Static loc:Localization.OpenSourceCreditsLabel}" />
|
<Label Grid.Row="1" Grid.Column="0" VerticalAlignment="Center" Content="{x:Static loc:Localization.OpenSourceCreditsLabel}" />
|
||||||
|
|
|
@ -14,7 +14,10 @@
|
||||||
<value>en-US</value>
|
<value>en-US</value>
|
||||||
</setting>
|
</setting>
|
||||||
<setting name="Device" serializeAs="String">
|
<setting name="Device" serializeAs="String">
|
||||||
<value>-1</value>
|
<value>0</value>
|
||||||
|
</setting>
|
||||||
|
<setting name="UseDefaultDevice" serializeAs="String">
|
||||||
|
<value>True</value>
|
||||||
</setting>
|
</setting>
|
||||||
</butterflow_ui.Properties.Settings>
|
</butterflow_ui.Properties.Settings>
|
||||||
</userSettings>
|
</userSettings>
|
||||||
|
|
18
butterflow-ui/Localization/Localization.Designer.cs
generated
18
butterflow-ui/Localization/Localization.Designer.cs
generated
|
@ -312,6 +312,15 @@ namespace butterflow_ui.Localization {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to donate.
|
||||||
|
/// </summary>
|
||||||
|
public static string DonateLabel {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("DonateLabel", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to _Edit.
|
/// Looks up a localized string similar to _Edit.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -861,6 +870,15 @@ namespace butterflow_ui.Localization {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to Use Default Compute Device.
|
||||||
|
/// </summary>
|
||||||
|
public static string UseDefaultDeviceLabel {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("UseDefaultDeviceLabel", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Looks up a localized string similar to Version.
|
/// Looks up a localized string similar to Version.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
|
|
@ -396,4 +396,10 @@
|
||||||
<data name="ForceCPU" xml:space="preserve">
|
<data name="ForceCPU" xml:space="preserve">
|
||||||
<value>Force CPU</value>
|
<value>Force CPU</value>
|
||||||
</data>
|
</data>
|
||||||
|
<data name="UseDefaultDeviceLabel" xml:space="preserve">
|
||||||
|
<value>Use Default Compute Device</value>
|
||||||
|
</data>
|
||||||
|
<data name="DonateLabel" xml:space="preserve">
|
||||||
|
<value>donate</value>
|
||||||
|
</data>
|
||||||
</root>
|
</root>
|
|
@ -203,7 +203,6 @@
|
||||||
</ToggleButton.Style>
|
</ToggleButton.Style>
|
||||||
</ToggleButton>
|
</ToggleButton>
|
||||||
<Button BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="bntVideoStop_Click">
|
<Button BorderThickness="0" Style="{StaticResource {x:Static ToolBar.ButtonStyleKey}}" Click="bntVideoStop_Click">
|
||||||
|
|
||||||
</Button>
|
</Button>
|
||||||
<butterflow_ui:ButterflowOption Grid.Column="2" LabelValue="{x:Static loc:Localization.HeightLabel}">
|
<butterflow_ui:ButterflowOption Grid.Column="2" LabelValue="{x:Static loc:Localization.HeightLabel}">
|
||||||
<TextBox Text="{Binding OptionsConfiguration.Height, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=LostFocus}" IsReadOnly="{Binding OptionsConfiguration.LockAspectRatio, Mode=OneWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=PropertyChanged}">
|
<TextBox Text="{Binding OptionsConfiguration.Height, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=LostFocus}" IsReadOnly="{Binding OptionsConfiguration.LockAspectRatio, Mode=OneWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:MainWindow}}, UpdateSourceTrigger=PropertyChanged}">
|
||||||
|
|
|
@ -11,7 +11,6 @@ using csmic;
|
||||||
|
|
||||||
namespace butterflow_ui
|
namespace butterflow_ui
|
||||||
{
|
{
|
||||||
|
|
||||||
/// <summary> The butterflow options configuration. Contians all the options necessary to run butterflow and process a video. </summary>
|
/// <summary> The butterflow options configuration. Contians all the options necessary to run butterflow and process a video. </summary>
|
||||||
public class OptionsConfiguration : PropertyChangedAlerter
|
public class OptionsConfiguration : PropertyChangedAlerter
|
||||||
{
|
{
|
||||||
|
@ -19,67 +18,93 @@ namespace butterflow_ui
|
||||||
|
|
||||||
/// <summary> The default pyramid scale setting. </summary>
|
/// <summary> The default pyramid scale setting. </summary>
|
||||||
private const decimal DEFAULT_PYRAMID_SCALE = 0.5m;
|
private const decimal DEFAULT_PYRAMID_SCALE = 0.5m;
|
||||||
|
|
||||||
/// <summary> The default levels setting. </summary>
|
/// <summary> The default levels setting. </summary>
|
||||||
private const int DEFAULT_LEVELS = 3;
|
private const int DEFAULT_LEVELS = 3;
|
||||||
|
|
||||||
/// <summary> The default window size setting. </summary>
|
/// <summary> The default window size setting. </summary>
|
||||||
private const int DEFAULT_WINDOW_SIZE = 25;
|
private const int DEFAULT_WINDOW_SIZE = 25;
|
||||||
|
|
||||||
/// <summary> The default iterations setting. </summary>
|
/// <summary> The default iterations setting. </summary>
|
||||||
private const int DEFAULT_ITERATIONS = 3;
|
private const int DEFAULT_ITERATIONS = 3;
|
||||||
|
|
||||||
/// <summary> The default pixel neighborhood setting. </summary>
|
/// <summary> The default pixel neighborhood setting. </summary>
|
||||||
private const int DEFAULT_PIXEL_NEIGHBORHOOD = 5;
|
private const int DEFAULT_PIXEL_NEIGHBORHOOD = 5;
|
||||||
|
|
||||||
/// <summary> The default smooth derivative standard deviation setting. </summary>
|
/// <summary> The default smooth derivative standard deviation setting. </summary>
|
||||||
private const decimal DEFAULT_SMOOTH_DERIVATIVE_STANDARD_DEVIATION = 1.1m;
|
private const decimal DEFAULT_SMOOTH_DERIVATIVE_STANDARD_DEVIATION = 1.1m;
|
||||||
|
|
||||||
/// <summary> The default flow filter type setting. </summary>
|
/// <summary> The default flow filter type setting. </summary>
|
||||||
private const FlowFilterType DEFAULT_FLOW_FILTER_TYPE = FlowFilterType.box;
|
private const FlowFilterType DEFAULT_FLOW_FILTER_TYPE = FlowFilterType.box;
|
||||||
|
|
||||||
/// <summary> The output file format when operating on more than one video. </summary>
|
/// <summary> The output file format when operating on more than one video. </summary>
|
||||||
private const string OUTPUT_FILE_FORMAT = "{0}_{1}";
|
private const string OUTPUT_FILE_FORMAT = "{0}_{1}";
|
||||||
|
|
||||||
/// <summary> An input interpreter used for converting string values to numeric values. </summary>
|
/// <summary> An input interpreter used for converting string values to numeric values. </summary>
|
||||||
[NonSerialized]
|
[NonSerialized]
|
||||||
private InputInterpreter interpreter = new InputInterpreter();
|
private InputInterpreter interpreter = new InputInterpreter();
|
||||||
|
|
||||||
/// <summary> The aspect ratio used for calculating heights when the aspect ratio is locked. </summary>
|
/// <summary> The aspect ratio used for calculating heights when the aspect ratio is locked. </summary>
|
||||||
private decimal aspectRatio = 0;
|
private decimal aspectRatio = 0;
|
||||||
|
|
||||||
/// <summary> The playback rate. </summary>
|
/// <summary> The playback rate. </summary>
|
||||||
private string playbackRate;
|
private string playbackRate;
|
||||||
|
|
||||||
/// <summary> A value indicating whether or not to keep the original audio in the final video. </summary>
|
/// <summary> A value indicating whether or not to keep the original audio in the final video. </summary>
|
||||||
private bool keepAudio;
|
private bool keepAudio;
|
||||||
|
|
||||||
/// <summary> The width of the output video. </summary>
|
/// <summary> The width of the output video. </summary>
|
||||||
private int width;
|
private int width;
|
||||||
|
|
||||||
/// <summary> The height of the output video. </summary>
|
/// <summary> The height of the output video. </summary>
|
||||||
private int height;
|
private int height;
|
||||||
|
|
||||||
/// <summary> A value indicating whether or not to render unspecified subregions. </summary>
|
/// <summary> A value indicating whether or not to render unspecified subregions. </summary>
|
||||||
private bool keepSubregions;
|
private bool keepSubregions;
|
||||||
|
|
||||||
/// <summary> A value indicating whether or not to render the final video with lossless quality. </summary>
|
/// <summary> A value indicating whether or not to render the final video with lossless quality. </summary>
|
||||||
private bool losslessQuality;
|
private bool losslessQuality;
|
||||||
|
|
||||||
/// <summary> A value indicating whether or not to tune processing for smooth motion. </summary>
|
/// <summary> A value indicating whether or not to tune processing for smooth motion. </summary>
|
||||||
private bool smoothMotion;
|
private bool smoothMotion;
|
||||||
|
|
||||||
/// <summary> A value indicating whether or not to lock the aspect ratio to the <seealso cref="width"/> of the video. </summary>
|
/// <summary> A value indicating whether or not to lock the aspect ratio to the <seealso cref="width"/> of the video. </summary>
|
||||||
private bool lockAspectRatio;
|
private bool lockAspectRatio;
|
||||||
|
|
||||||
/// <summary> The video input files. </summary>
|
/// <summary> The video input files. </summary>
|
||||||
private IEnumerable<string> videoInput;
|
private IEnumerable<string> videoInput;
|
||||||
|
|
||||||
/// <summary> The video output file. </summary>
|
/// <summary> The video output file. </summary>
|
||||||
private string videoOutput;
|
private string videoOutput;
|
||||||
|
|
||||||
/// <summary> A value indicating whether or not to use fast pyramids when processing a video. </summary>
|
/// <summary> A value indicating whether or not to use fast pyramids when processing a video. </summary>
|
||||||
private bool fastPyramid;
|
private bool fastPyramid;
|
||||||
|
|
||||||
/// <summary> The pyramid scale setting. </summary>
|
/// <summary> The pyramid scale setting. </summary>
|
||||||
private decimal pyramidScale;
|
private decimal pyramidScale;
|
||||||
|
|
||||||
/// <summary> The level size setting. </summary>
|
/// <summary> The level size setting. </summary>
|
||||||
private int levels;
|
private int levels;
|
||||||
|
|
||||||
/// <summary> Size of the windowing average. </summary>
|
/// <summary> Size of the windowing average. </summary>
|
||||||
private int windowSize;
|
private int windowSize;
|
||||||
|
|
||||||
/// <summary> The number of iterations per pyramid level. </summary>
|
/// <summary> The number of iterations per pyramid level. </summary>
|
||||||
private int iterations;
|
private int iterations;
|
||||||
|
|
||||||
/// <summary> The size of pixel neighborhood. </summary>
|
/// <summary> The size of pixel neighborhood. </summary>
|
||||||
private int pixelNeighborhood;
|
private int pixelNeighborhood;
|
||||||
|
|
||||||
/// <summary> The standard deviation of smooth derivatives </summary>
|
/// <summary> The standard deviation of smooth derivatives </summary>
|
||||||
private decimal smoothDerivativeStandardDeviation;
|
private decimal smoothDerivativeStandardDeviation;
|
||||||
|
|
||||||
/// <summary> Type of the flow filter to use for processing. </summary>
|
/// <summary> Type of the flow filter to use for processing. </summary>
|
||||||
private FlowFilterType flowFilterType = FlowFilterType.box;
|
private FlowFilterType flowFilterType = FlowFilterType.box;
|
||||||
|
|
||||||
/// <summary> The subregions of the video on which to process. </summary>
|
/// <summary> The subregions of the video on which to process. </summary>
|
||||||
private ObservableCollection<ButterflowSubregion> subregions = new ObservableCollection<ButterflowSubregion>();
|
private ObservableCollection<ButterflowSubregion> subregions = new ObservableCollection<ButterflowSubregion>();
|
||||||
|
|
||||||
#endregion
|
#endregion Members
|
||||||
|
|
||||||
#region Properties
|
#region Properties
|
||||||
|
|
||||||
|
@ -419,7 +444,7 @@ namespace butterflow_ui
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion Properties
|
||||||
|
|
||||||
#region Contructors
|
#region Contructors
|
||||||
|
|
||||||
|
@ -463,7 +488,7 @@ namespace butterflow_ui
|
||||||
OnPropertyChanged("CommandLineOutput");
|
OnPropertyChanged("CommandLineOutput");
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion Contructors
|
||||||
|
|
||||||
#region Methods
|
#region Methods
|
||||||
|
|
||||||
|
@ -541,13 +566,16 @@ namespace butterflow_ui
|
||||||
stringBuilder.AppendFormat("-vs {0}:{1} ", this.Width, this.Height);
|
stringBuilder.AppendFormat("-vs {0}:{1} ", this.Width, this.Height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(!Settings.Default.UseDefaultDevice)
|
||||||
|
{
|
||||||
if(Settings.Default.Device == 0)
|
if(Settings.Default.Device == 0)
|
||||||
{
|
{
|
||||||
stringBuilder.Append("-sw ");
|
stringBuilder.Append("-sw ");
|
||||||
}
|
}
|
||||||
if(Settings.Default.Device > 0)
|
if(Settings.Default.Device > 0)
|
||||||
{
|
{
|
||||||
stringBuilder.AppendFormat("-device {0} ", Settings.Default.Device);
|
stringBuilder.AppendFormat("-device {0} ", Settings.Default.Device - 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(!string.IsNullOrWhiteSpace(this.PlaybackRate)) stringBuilder.AppendFormat("-r {0} ", this.PlaybackRate);
|
if(!string.IsNullOrWhiteSpace(this.PlaybackRate)) stringBuilder.AppendFormat("-r {0} ", this.PlaybackRate);
|
||||||
|
@ -634,6 +662,6 @@ namespace butterflow_ui
|
||||||
return ToButterflowArguments();
|
return ToButterflowArguments();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion Methods
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -8,16 +8,23 @@
|
||||||
xmlns:loc="clr-namespace:butterflow_ui.Localization"
|
xmlns:loc="clr-namespace:butterflow_ui.Localization"
|
||||||
mc:Ignorable="d"
|
mc:Ignorable="d"
|
||||||
Title="{x:Static loc:Localization.OptionsWindowTitle}" SizeToContent="WidthAndHeight">
|
Title="{x:Static loc:Localization.OptionsWindowTitle}" SizeToContent="WidthAndHeight">
|
||||||
|
<Window.Resources>
|
||||||
|
<butterflow_ui:InverseBoolVisibilityConverter x:Key="InverseBoolVisibilityConverter" />
|
||||||
|
</Window.Resources>
|
||||||
<DockPanel Margin="32">
|
<DockPanel Margin="32">
|
||||||
<StackPanel>
|
<StackPanel>
|
||||||
<WrapPanel>
|
<WrapPanel>
|
||||||
<Label Content="{x:Static loc:Localization.LanguageLabel}" />
|
<Label Content="{x:Static loc:Localization.LanguageLabel}" />
|
||||||
<ComboBox DisplayMemberPath="DisplayName" ItemsSource="{Binding SupportedLanguages, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:OptionsWindow}}, UpdateSourceTrigger=PropertyChanged}" SelectedItem="{Binding Source={x:Static settings:Settings.Default}, Path=Language}" />
|
<ComboBox DisplayMemberPath="DisplayName" ItemsSource="{Binding SupportedLanguages, Mode=TwoWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:OptionsWindow}}, UpdateSourceTrigger=PropertyChanged}" SelectedItem="{Binding Source={x:Static settings:Settings.Default}, Path=Language}" VerticalAlignment="Center" />
|
||||||
</WrapPanel>
|
</WrapPanel>
|
||||||
<TextBlock Text="{x:Static loc:Localization.OptionsWindowLanguageChangeNotice}" Foreground="Gray" />
|
<TextBlock Text="{x:Static loc:Localization.OptionsWindowLanguageChangeNotice}" Foreground="Gray" />
|
||||||
<WrapPanel>
|
<WrapPanel>
|
||||||
|
<Label Content="{x:Static loc:Localization.UseDefaultDeviceLabel}" />
|
||||||
|
<CheckBox Name="chkUseDefaultDevice" IsChecked="{Binding Source={x:Static settings:Settings.Default}, Path=UseDefaultDevice}" VerticalAlignment="Center" />
|
||||||
|
</WrapPanel>
|
||||||
|
<WrapPanel Visibility="{Binding Source={x:Static settings:Settings.Default}, Path=UseDefaultDevice, Converter={StaticResource InverseBoolVisibilityConverter}}">
|
||||||
<Label Content="{x:Static loc:Localization.DeviceLabel}" />
|
<Label Content="{x:Static loc:Localization.DeviceLabel}" />
|
||||||
<ComboBox Name="comboDeviceList" DisplayMemberPath="Value" ItemsSource="{Binding ButterflowWrapper.Devices, Mode=OneWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:OptionsWindow}}, UpdateSourceTrigger=PropertyChanged}" SelectedIndex="{Binding Source={x:Static settings:Settings.Default}, Path=Device}" />
|
<ComboBox Name="comboDeviceList" DisplayMemberPath="Value" ItemsSource="{Binding ButterflowWrapper.Devices, Mode=OneWay, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type butterflow_ui:OptionsWindow}}, UpdateSourceTrigger=PropertyChanged}" SelectedIndex="{Binding Source={x:Static settings:Settings.Default}, Path=Device}" VerticalAlignment="Center" />
|
||||||
</WrapPanel>
|
</WrapPanel>
|
||||||
<Separator Margin="0,10" />
|
<Separator Margin="0,10" />
|
||||||
<Button Name="btnSave" MaxWidth="45" Content="{x:Static loc:Localization.SaveLabel}" Click="btnSave_Click" />
|
<Button Name="btnSave" MaxWidth="45" Content="{x:Static loc:Localization.SaveLabel}" Click="btnSave_Click" />
|
||||||
|
|
|
@ -37,7 +37,7 @@ namespace butterflow_ui
|
||||||
CultureInfo.CreateSpecificCulture("zh-CN"),
|
CultureInfo.CreateSpecificCulture("zh-CN"),
|
||||||
});
|
});
|
||||||
|
|
||||||
#endregion
|
#endregion Properties
|
||||||
|
|
||||||
#region Constructors
|
#region Constructors
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ namespace butterflow_ui
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion Constructors
|
||||||
|
|
||||||
#region Methods
|
#region Methods
|
||||||
|
|
||||||
|
@ -78,6 +78,6 @@ namespace butterflow_ui
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion Methods
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -30,7 +30,6 @@ using System.Windows;
|
||||||
|
|
||||||
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
||||||
|
|
||||||
|
|
||||||
[assembly: ThemeInfo(
|
[assembly: ThemeInfo(
|
||||||
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
||||||
//(used if a resource is not found in the page,
|
//(used if a resource is not found in the page,
|
||||||
|
@ -40,7 +39,6 @@ using System.Windows;
|
||||||
// app, or any theme specific resource dictionaries)
|
// app, or any theme specific resource dictionaries)
|
||||||
)]
|
)]
|
||||||
|
|
||||||
|
|
||||||
// Version information for an assembly consists of the following four values:
|
// Version information for an assembly consists of the following four values:
|
||||||
//
|
//
|
||||||
// Major Version
|
// Major Version
|
||||||
|
@ -51,5 +49,5 @@ using System.Windows;
|
||||||
// You can specify all the values or you can default the Build and Revision Numbers
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
// by using the '*' as shown below:
|
// by using the '*' as shown below:
|
||||||
// [assembly: AssemblyVersion("1.0.*")]
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
[assembly: AssemblyVersion("1.0.5.*")]
|
[assembly: AssemblyVersion("1.1.0.*")]
|
||||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
14
butterflow-ui/Properties/Settings.Designer.cs
generated
14
butterflow-ui/Properties/Settings.Designer.cs
generated
|
@ -37,7 +37,7 @@ namespace butterflow_ui.Properties {
|
||||||
|
|
||||||
[global::System.Configuration.UserScopedSettingAttribute()]
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Configuration.DefaultSettingValueAttribute("-1")]
|
[global::System.Configuration.DefaultSettingValueAttribute("0")]
|
||||||
public int Device {
|
public int Device {
|
||||||
get {
|
get {
|
||||||
return ((int)(this["Device"]));
|
return ((int)(this["Device"]));
|
||||||
|
@ -46,5 +46,17 @@ namespace butterflow_ui.Properties {
|
||||||
this["Device"] = value;
|
this["Device"] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[global::System.Configuration.UserScopedSettingAttribute()]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Configuration.DefaultSettingValueAttribute("True")]
|
||||||
|
public bool UseDefaultDevice {
|
||||||
|
get {
|
||||||
|
return ((bool)(this["UseDefaultDevice"]));
|
||||||
|
}
|
||||||
|
set {
|
||||||
|
this["UseDefaultDevice"] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,10 @@
|
||||||
<Value Profile="(Default)">en-US</Value>
|
<Value Profile="(Default)">en-US</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
<Setting Name="Device" Type="System.Int32" Scope="User">
|
<Setting Name="Device" Type="System.Int32" Scope="User">
|
||||||
<Value Profile="(Default)">-1</Value>
|
<Value Profile="(Default)">0</Value>
|
||||||
|
</Setting>
|
||||||
|
<Setting Name="UseDefaultDevice" Type="System.Boolean" Scope="User">
|
||||||
|
<Value Profile="(Default)">True</Value>
|
||||||
</Setting>
|
</Setting>
|
||||||
</Settings>
|
</Settings>
|
||||||
</SettingsFile>
|
</SettingsFile>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,81 +0,0 @@
|
||||||
usage: butterflow [options] [video]
|
|
||||||
|
|
||||||
Required arguments:
|
|
||||||
video Specify the input video
|
|
||||||
|
|
||||||
General options:
|
|
||||||
-h, --help Show this help message and exit
|
|
||||||
--version Show program's version number and exit
|
|
||||||
--cache-dir CACHE_DIR
|
|
||||||
Specify path to the cache directory
|
|
||||||
-c, --cache Show cache information and exit
|
|
||||||
--rm-cache Set to clear the cache and exit
|
|
||||||
-prb, --probe Show media file information and exit
|
|
||||||
-v, --verbosity Set to increase output verbosity
|
|
||||||
-q, --quiet Set to suppress console output
|
|
||||||
|
|
||||||
Device options:
|
|
||||||
-d, --show-devices Show detected OpenCL devices and exit
|
|
||||||
-device DEVICE Specify the preferred OpenCL device to use as an
|
|
||||||
integer. Device numbers can be listed with the `-d`
|
|
||||||
option. The device will be chosen automatically if
|
|
||||||
nothing is specified.
|
|
||||||
-sw Set to force software rendering
|
|
||||||
|
|
||||||
Display options:
|
|
||||||
-p, --show-preview Set to show video preview
|
|
||||||
-e, --embed-info Set to embed debugging info into the output video
|
|
||||||
-tt {light,dark,stroke}, --text-type {light,dark,stroke}
|
|
||||||
Specify text type for embedded debugging info,
|
|
||||||
(default: light)
|
|
||||||
-m, --mark-frames Set to mark interpolated frames
|
|
||||||
|
|
||||||
Video options:
|
|
||||||
-o OUTPUT_PATH, --output-path OUTPUT_PATH
|
|
||||||
Specify path to the output video
|
|
||||||
-r PLAYBACK_RATE, --playback-rate PLAYBACK_RATE
|
|
||||||
Specify the playback rate as an integer or a float.
|
|
||||||
Fractional forms are acceptable, e.g., 24/1.001 is the
|
|
||||||
same as 23.976. To use a multiple of the source
|
|
||||||
video's rate, follow a number with `x`, e.g., "2x"
|
|
||||||
will double the frame rate. The original rate will be
|
|
||||||
used by default if nothing is specified.
|
|
||||||
-s SUBREGIONS, --subregions SUBREGIONS
|
|
||||||
Specify rendering subregions in the form:
|
|
||||||
"a=TIME,b=TIME,TARGET=VALUE" where TARGET is either
|
|
||||||
`spd`, `dur`, `fps`. Valid TIME syntaxes are [hr:m:s],
|
|
||||||
[m:s], [s], [s.xxx], or `end`, which signifies to the
|
|
||||||
end the video. You can specify multiple subregions by
|
|
||||||
separating them with a colon `:`. A special subregion
|
|
||||||
format that conveniently describes the entire clip is
|
|
||||||
available in the form: "full,TARGET=VALUE".
|
|
||||||
-k, --keep-subregions
|
|
||||||
Set to render subregions that are not explicitly
|
|
||||||
specified
|
|
||||||
-vs VIDEO_SCALE, --video-scale VIDEO_SCALE
|
|
||||||
Specify output video size in the form: "WIDTH:HEIGHT"
|
|
||||||
or by using a factor. To keep the aspect ratio only
|
|
||||||
specify one component, either width or height, and set
|
|
||||||
the other component to -1, (default: 1.0)
|
|
||||||
-l, --lossless Set to use lossless encoding settings
|
|
||||||
-sm, --smooth-motion Set to tune for smooth motion. This mode yields
|
|
||||||
artifact-less frames by emphasizing blended frames
|
|
||||||
over warping pixels.
|
|
||||||
|
|
||||||
Muxing options:
|
|
||||||
-audio Set to add the source audio to the output video
|
|
||||||
|
|
||||||
Advanced options:
|
|
||||||
--fast-pyr Set to use fast pyramids
|
|
||||||
--pyr-scale PYR_SCALE
|
|
||||||
Specify pyramid scale factor, (default: 0.5)
|
|
||||||
--levels LEVELS Specify number of pyramid layers, (default: 3)
|
|
||||||
--winsize WINSIZE Specify averaging window size, (default: 25)
|
|
||||||
--iters ITERS Specify number of iterations at each pyramid level,
|
|
||||||
(default: 3)
|
|
||||||
--poly-n {5,7} Specify size of pixel neighborhood, (default: 5)
|
|
||||||
--poly-s POLY_S Specify standard deviation to smooth derivatives,
|
|
||||||
(default: 1.1)
|
|
||||||
-ff {box,gaussian}, --flow-filter {box,gaussian}
|
|
||||||
Specify which filter to use for optical flow
|
|
||||||
estimation, (default: box)
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_bisect.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_bisect.pyd
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_codecs_iso2022.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_codecs_iso2022.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_codecs_jp.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_codecs_jp.pyd
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_collections.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_collections.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_ctypes.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_ctypes.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_curses.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_curses.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_hashlib.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_hashlib.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_heapq.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_heapq.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_io.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_io.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_multibytecodec.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_multibytecodec.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_multiprocessing.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_multiprocessing.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_random.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_random.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_socket.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_socket.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_ssl.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_ssl.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_struct.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_struct.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/_subprocess.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/_subprocess.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/array.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/array.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/binascii.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/binascii.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/butterflow/avinfo.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/butterflow/avinfo.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/butterflow/motion.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/butterflow/motion.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/butterflow/ocl.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/butterflow/ocl.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/bz2.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/bz2.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/cPickle.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/cPickle.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/cStringIO.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/cStringIO.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/cv2.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/cv2.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/datetime.pyd
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/datetime.pyd
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/SDL2.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/SDL2.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avdevice-57.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avdevice-57.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avfilter-6.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avfilter-6.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avformat-57.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avformat-57.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avresample-3.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avresample-3.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avutil-55.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/avutil-55.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/ffmpeg.exe
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/ffmpeg.exe
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libass-9.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libass-9.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libbluray-2.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libbluray-2.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libcelt0-2.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libcelt0-2.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libfontconfig-1.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libfontconfig-1.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libfreetype-6.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libfreetype-6.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libfribidi-0.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libfribidi-0.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libglib-2.0-0.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libglib-2.0-0.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libgnutls-30.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libgnutls-30.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libgraphite2.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libgraphite2.dll
Normal file
Binary file not shown.
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libgsm.dll
Normal file
BIN
butterflow-ui/ThirdPartyCompiled/lib/ffmpeg/libgsm.dll
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue