Skip to content

Commit

Permalink
Wrong audio encoder bug fix
Browse files Browse the repository at this point in the history
Fixed a bug which used wrong audio encoder to save audio as aac instead
of using lame mp3.
  • Loading branch information
rnand committed Aug 26, 2015
1 parent e0b2cab commit 1bc711e
Show file tree
Hide file tree
Showing 59 changed files with 28,608 additions and 413 deletions.
Binary file modified Youtube downloader.suo
Binary file not shown.
2 changes: 1 addition & 1 deletion Youtube downloader/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ private void Download(string qlty,string dType)
}
else if (dType == "aud")
{
exeProcess.StartInfo.Arguments = "--extract-audio --audio-format mp3 --audio-quality 0"+ " -o " + "\"" + fdir + "\\" + fname + "." + ftype + "\"" + " " + url ; //audio quality, insert a value between 0 (better) and 9 (worse) for VBR
exeProcess.StartInfo.Arguments = "--extract-audio" + " --audio-format mp3" + " --audio-quality 0" + " -o " + "\"" + fdir + "\\" + fname + "." + "m4a" + "\"" + " " + url; //audio quality, insert a value between 0 (better) and 9 (worse) for VBR
//audio format: "best", "aac", "vorbis", "mp3", "m4a", "opus", or "wav"; "best" by default
}

Expand Down
Binary file removed Youtube downloader/bin/Debug/YouTube downloader.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>9v/90WTFxrr/E6j+m9eVN59Okhs=</dsig:DigestValue>
<dsig:DigestValue>TXEG6LtYu1hGbEMBQO79OxdyBGk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file modified Youtube downloader/bin/Release/YouTube downloader.exe
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>8Zet8I8/CMLQR4BTjMQPIVqCuMo=</dsig:DigestValue>
<dsig:DigestValue>0POdvktbkMj7zhV/tKX4nU/1xrg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Binary file modified Youtube downloader/bin/Release/YouTube downloader.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>9v/90WTFxrr/E6j+m9eVN59Okhs=</dsig:DigestValue>
<dsig:DigestValue>TXEG6LtYu1hGbEMBQO79OxdyBGk=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
<dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" />
</dsig:Transforms>
<dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1" />
<dsig:DigestValue>8Zet8I8/CMLQR4BTjMQPIVqCuMo=</dsig:DigestValue>
<dsig:DigestValue>0POdvktbkMj7zhV/tKX4nU/1xrg=</dsig:DigestValue>
</hash>
</dependentAssembly>
</dependency>
Expand Down
293 changes: 0 additions & 293 deletions Youtube downloader/obj/x86/Debug/Common.cs

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
48 changes: 0 additions & 48 deletions Youtube downloader/obj/x86/Debug/ILTemplate.cs

This file was deleted.

Binary file not shown.
Loading

0 comments on commit 1bc711e

Please sign in to comment.