AydinAdn / MediaToolkit

A .NET library to convert and process all your video & audio files.
MIT License
647 stars 199 forks source link

Can't convert .AVI files #37

Open web-roman opened 8 years ago

web-roman commented 8 years ago

Actually files with ext .AVI after converting don't have video stream, there is only audio. Maybe it will help you to fix this issue - the parameter "-pix_fmt yuv420p" fixes the problem

joedean3 commented 8 years ago

same issue here... I just spent a long time looking at this thinking it was a problem with all videos but it seems to be just avi.

AydinAdn commented 8 years ago

Thank you @web-roman, I'll add that on the next push, were you converting to .mp4?

web-roman commented 8 years ago

yes, i'm was converting to .mp4

joedean3 commented 8 years ago

I tried it using WinFF v 1.54 and it went through the motions and created a file that didn’t play at all. Your library gave me audio without video.

From: Aydin [mailto:notifications@github.com] Sent: Sunday, 10 April 2016 12:00 PM To: AydinAdn/MediaToolkit MediaToolkit@noreply.github.com Cc: joedean3 joe@joedean.net Subject: Re: [AydinAdn/MediaToolkit] Can't convert .AVI files (#37)

Are you able to convert the .avi content outside of the library? It may be due to the version of FFmpeg that's packaged with the release

— You are receiving this because you commented. Reply to this email directly or view it on GitHub https://github.com/AydinAdn/MediaToolkit/issues/37#issuecomment-207913336 https://github.com/notifications/beacon/AEihI7cIQZ6ezQwbfOfLImyYLvV7ihOgks5p2HW2gaJpZM4H34Z5.gif

rexn8r commented 7 years ago

hello

i am facing problem converting AVI file. The file gets converted OK and plays fine in Windows Media Player as well as Media Player Classic, but it doesn't play in HTML5 video element in a web app.

As suggested by "web-roman" , i added following line in CommandBuilder.cs file;

commandBuilder.AppendFormat(" -i \"{0}\" ", inputFile.Filename); commandBuilder.AppendFormat(" -pix_fmt \"{0}\" ", "yuv420p"); (AS per web-roman suggestion) commandBuilder.AppendFormat(" -vcodec \"{0}\" ", "libx264"); return commandBuilder.AppendFormat(" \"{0}\" ", outputFile.Filename).ToString();

but that doesn't help either.

can anybody throw light on this AVI file conversion issue?

thanks rex