Skip to content

Commit df46b54

Browse files
committed
Added to NuGet
1 parent 05d0726 commit df46b54

File tree

3 files changed

+20
-3
lines changed

3 files changed

+20
-3
lines changed

ExampleApplication/MainWindow.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
66
xmlns:local="clr-namespace:EmergenceGuardian.FFmpegExampleApplication"
77
mc:Ignorable="d"
8-
Title="C# FFmpeg Example Application" Height="152" Width="369" ResizeMode="NoResize">
8+
Title="FFmpeg.NET Example Application" Height="152" Width="369" ResizeMode="NoResize">
99
<Grid>
1010
<TextBox x:Name="SourceTextBox" Margin="79,12,0,0" VerticalAlignment="Top" TabIndex="1" HorizontalAlignment="Left" Width="239" Height="21" VerticalContentAlignment="Center"/>
1111
<TextBlock HorizontalAlignment="Left" Margin="10,13,0,0" Text="Source" VerticalAlignment="Top"/>
1212
<TextBox x:Name="DestinationTextBox" Margin="79,38,0,0" VerticalAlignment="Top" TabIndex="3" HorizontalAlignment="Left" Width="239" Height="21" VerticalContentAlignment="Center"/>
1313
<TextBlock HorizontalAlignment="Left" Margin="10,39,0,0" Text="Destination" VerticalAlignment="Top"/>
1414
<Button x:Name="BrowseSource" Content="..." HorizontalAlignment="Left" Margin="318,12,0,0" VerticalAlignment="Top" Width="22" Height="21" TabIndex="2" IsEnabled="{Binding IsMpcPlayer, ElementName=window}" Click="BrowseSource_Click" />
1515
<Button x:Name="BrowseDestination" Content="..." HorizontalAlignment="Left" Margin="318,38,0,0" VerticalAlignment="Top" Width="22" Height="21" TabIndex="4" IsEnabled="{Binding IsMpcPlayer, ElementName=window}" Click="BrowseDestination_Click" />
16-
<TextBlock HorizontalAlignment="Left" Margin="79,62,0,0" Text="Encode video to H264/AAC" VerticalAlignment="Top"/>
16+
<TextBlock HorizontalAlignment="Left" Margin="79,62,0,0" Text="Encodes video to H264/AAC" VerticalAlignment="Top"/>
1717
<Button x:Name="RunSimpleButton" Content="_Simple" HorizontalAlignment="Left" Margin="79,81,0,0" VerticalAlignment="Top" Width="100" TabIndex="5" Click="RunSimpleButton_Click" />
1818
<Button x:Name="RunComplexButton" Content="_Complex" HorizontalAlignment="Left" Margin="240,81,0,0" VerticalAlignment="Top" Width="100" TabIndex="6" Click="RunComplexButton_Click" />
1919
</Grid>

FFmpeg/FFmpeg.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
5-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
77
<ProjectGuid>{C01178B4-A869-45F8-9B2B-7683F9EBB53D}</ProjectGuid>
88
<OutputType>Library</OutputType>

FFmpeg/FFmpeg.nuspec

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?xml version="1.0"?>
2+
<package >
3+
<metadata>
4+
<id>EmergenceGuardian.FFmpeg</id>
5+
<version>1.0.0.0</version>
6+
<title>FFmpeg.NET</title>
7+
<authors>Etienne Charland</authors>
8+
<owners>Etienne Charland</owners>
9+
<licenseUrl>https://github.com/mysteryx93/FFmpeg.NET/blob/master/LICENSE</licenseUrl>
10+
<projectUrl>https://github.com/mysteryx93/FFmpeg.NET</projectUrl>
11+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
12+
<description>.NET Wrapper for FFmpeg</description>
13+
<releaseNotes>Initial release.</releaseNotes>
14+
<copyright>Copyright 2017, Emergence Guardian</copyright>
15+
<tags>ffmpeg ffmpeg-wrapper video-encoding video library .net</tags>
16+
</metadata>
17+
</package>

0 commit comments

Comments
 (0)