Skip to content

Commit

Permalink
Added to NuGet
Browse files Browse the repository at this point in the history
  • Loading branch information
mysteryx93 committed Mar 17, 2017
1 parent 05d0726 commit df46b54
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ExampleApplication/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:EmergenceGuardian.FFmpegExampleApplication"
mc:Ignorable="d"
Title="C# FFmpeg Example Application" Height="152" Width="369" ResizeMode="NoResize">
Title="FFmpeg.NET Example Application" Height="152" Width="369" ResizeMode="NoResize">
<Grid>
<TextBox x:Name="SourceTextBox" Margin="79,12,0,0" VerticalAlignment="Top" TabIndex="1" HorizontalAlignment="Left" Width="239" Height="21" VerticalContentAlignment="Center"/>
<TextBlock HorizontalAlignment="Left" Margin="10,13,0,0" Text="Source" VerticalAlignment="Top"/>
<TextBox x:Name="DestinationTextBox" Margin="79,38,0,0" VerticalAlignment="Top" TabIndex="3" HorizontalAlignment="Left" Width="239" Height="21" VerticalContentAlignment="Center"/>
<TextBlock HorizontalAlignment="Left" Margin="10,39,0,0" Text="Destination" VerticalAlignment="Top"/>
<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" />
<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" />
<TextBlock HorizontalAlignment="Left" Margin="79,62,0,0" Text="Encode video to H264/AAC" VerticalAlignment="Top"/>
<TextBlock HorizontalAlignment="Left" Margin="79,62,0,0" Text="Encodes video to H264/AAC" VerticalAlignment="Top"/>
<Button x:Name="RunSimpleButton" Content="_Simple" HorizontalAlignment="Left" Margin="79,81,0,0" VerticalAlignment="Top" Width="100" TabIndex="5" Click="RunSimpleButton_Click" />
<Button x:Name="RunComplexButton" Content="_Complex" HorizontalAlignment="Left" Margin="240,81,0,0" VerticalAlignment="Top" Width="100" TabIndex="6" Click="RunComplexButton_Click" />
</Grid>
Expand Down
2 changes: 1 addition & 1 deletion FFmpeg/FFmpeg.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C01178B4-A869-45F8-9B2B-7683F9EBB53D}</ProjectGuid>
<OutputType>Library</OutputType>
Expand Down
17 changes: 17 additions & 0 deletions FFmpeg/FFmpeg.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>EmergenceGuardian.FFmpeg</id>
<version>1.0.0.0</version>
<title>FFmpeg.NET</title>
<authors>Etienne Charland</authors>
<owners>Etienne Charland</owners>
<licenseUrl>https://github.com/mysteryx93/FFmpeg.NET/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/mysteryx93/FFmpeg.NET</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>.NET Wrapper for FFmpeg</description>
<releaseNotes>Initial release.</releaseNotes>
<copyright>Copyright 2017, Emergence Guardian</copyright>
<tags>ffmpeg ffmpeg-wrapper video-encoding video library .net</tags>
</metadata>
</package>

0 comments on commit df46b54

Please sign in to comment.