Skip to content

Commit 01f15e5

Browse files
committed
added nuget badge, removed deprecated example parameter mencoder parameters
1 parent 3ea7c80 commit 01f15e5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

MencoderSharp/Mencoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ public class Mencoder : MencoderBase
2020
/// <returns></returns>
2121
public bool EncodeToMp4(string source, string destination)
2222
{
23-
return Mencode(source, destination, "-vf dsize=16/9,scale=-10:-1,harddup -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=512:threads=auto:turbo=1:global_header:threads=auto", "-oac mp3lame");
23+
return Mencode(source, destination, "-vf dsize=16/9,scale=-10:-1,harddup -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=512:threads=auto:global_header:threads=auto", "-oac mp3lame");
2424
}
2525

2626
/// <summary>

MencoderSharp/MencoderAsync.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public void CancelEncodeAsync()
6060
/// <param name="destination">The destination.</param>
6161
public void StartEncodeAsync(string source, string destination)
6262
{
63-
StartEncodeAsync(source, destination, "-vf dsize=16/9,scale=-10:-1,harddup -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=512:threads=auto:turbo=1:global_header:threads=auto", "-oac mp3lame");
63+
StartEncodeAsync(source, destination, "-vf dsize=16/9,scale=-10:-1,harddup -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=512:threads=auto:global_header:threads=auto", "-oac mp3lame");
6464
}
6565

6666
/// <summary>

MencoderSharp/MencoderParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ internal struct MencoderParameters
1616
public string Destination { get; set; }
1717

1818
/// <summary>
19-
/// Mencoder specific paramters, e.g. "-vf dsize=16/9,scale=-10:-1,harddup -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=512:threads=auto:turbo=1:global_header:threads=auto"
19+
/// Mencoder specific paramters, e.g. "-vf dsize=16/9,scale=-10:-1,harddup -of lavf -lavfopts format=mp4 -ovc x264 -sws 9 -x264encopts nocabac:level_idc=30:bframes=0:bitrate=512:threads=auto:global_header:threads=auto"
2020
/// </summary>
2121
public string VideoParameter { get; set; }
2222

MencoderSharpDemo/MencoderSharpDemo.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# mencoder-sharp
22

3-
[![Build status](https://ci.appveyor.com/api/projects/status/xmx1t9ieuxqjeeh8?svg=true)](https://ci.appveyor.com/project/stesee/mencoder-sharp) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/38787d123f9749ee9debbcf9ce9e8913)](https://www.codacy.com/manual/stesee/mencoder-sharp?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=Codeuctivity/mencoder-sharp&amp;utm_campaign=Badge_Grade)
3+
[![Build status](https://ci.appveyor.com/api/projects/status/xmx1t9ieuxqjeeh8?svg=true)](https://ci.appveyor.com/project/stesee/mencoder-sharp) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/38787d123f9749ee9debbcf9ce9e8913)](https://www.codacy.com/manual/stesee/mencoder-sharp?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=Codeuctivity/mencoder-sharp&amp;utm_campaign=Badge_Grade) [![Nuget](https://img.shields.io/nuget/v/MencoderSharp.svg)](https://www.nuget.org/packages/MencoderSharp/)
44

55
You need to decode, encode or do some processing stuff on multimedia streams, files or whatever mencoder can read? You want to implement your solution in C# or some other .net language? Here you are! This is an assembly which wrappes calls to e.g. reencode some source with a other codec.
66

0 commit comments

Comments
 (0)