Quote:
yescop wrote:
@ktadd
I just wanted to tell you I use your program.
Don't ask yourself again !!! :)
Ok, I won't ask again. :)
Quote:
2- I use ffmpeg on Mac OSX because on A1, there are no erros but the transformed files are not good (or don't work or aren't recognised by my DVD player).
One example is when the audio stream is not an mp3 but is a AAC. On A1, no gurus but the avi file is not played. I do the same thing on MacOS and it worked.
Unfortunatly AAC encoding isn't supported on our current build of ffmpeg because the encoding library LibFAAC wasn't available at the time. It is now but ffmpeg will have to be rebuilt to use it. You could try setting the audio codec to "Copy" and it should pass through the audio stream unchanged. You need to make sure to use an output format that supports AAC audio. There is an AAC decoder included so you should be able to convert AAC audio to other formats.
Quote:
3- Could you add in the gui an option to remove a audio stream ?
Sounds like what you want to do is re-map the streams.
I've been thinking about how to add mapping to the GUI but in the meantime you should be able to do it by
adding the -map commnad to the "additional options" string gadget. For example:
Use the "Input File Info" button to determine which stream is which in the file. If your input file has video at stream 0 and audio on streams 1 and 2 but you only want the #2 audio stream add these commands in the additioal options gadget:
-map 0:0 -map 0:2
The output file will include the video stream and 2nd audio stream. See this link for more info on mapping:
Info on ffmpeg mappingQuote:
4- an option to add some subtitles. For the moment, I use mencoder with a lot of options. It's paintful. :(
I don't think ffmpeg has all the subtitle functions that mencoder has but I think you can add subtitles via a subtitle file. I'll make a note for a possible future enhancement.