Skip to content

Commit

Permalink
Fixed (again) MP3
Browse files Browse the repository at this point in the history
  • Loading branch information
theasern committed Oct 28, 2018
1 parent fcc5324 commit 2bb17b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion YTDownloader/Form1.cs
Original file line number Diff line number Diff line change
@@ -102,7 +102,7 @@ private void button3_Click(object sender, EventArgs e)
string mp4filepath = path + @"\" + vid.FullName;
File.WriteAllBytes(path + @"\" + vid.FullName, vid.GetBytes());

var inputFile = new MediaFile { Filename = path + vid.FullName };
var inputFile = new MediaFile { Filename = path + @"\" + vid.FullName };
var outputFile = new MediaFile { Filename = $"{path + vid.FullName}.mp3" };

using (var engine = new Engine())

0 comments on commit 2bb17b8

Please sign in to comment.