My digital video camera creates VRO files which I understand are some variation of an MPEG. Simply renaming the file does not work. I am able to play the file in Movie Player, although unstable (I can't move the seek bar to a spot to go to a certain point, etc).
I'm using the following statement to convert to MPEG and it works but no audio comes through. From what I understand the "copy" parameter just tells ffmpeg to use the same audio and video codec that is used in the input file. Is there something else I should be doing?
The file is really long and just to test it out I'm outputting just the first one minute so I don't have to wait for a 5GB file to convert.
Code:
ffmpeg -i VR_MOVIE.VRO -acodec copy -vcodec copy -t 00:01:00 VR_MOVIE1.mpg
Also, I want to be able to get the best possible quality out of this thing. What is the best codec to use and can you provide a command line example? I also eventually want to burn this thing to a DVD so I guess maybe I want a VOB file too? Any suggestions on how to do that? The codec may be the same or different, who knows.
Thanks in advance! I love these forums. My life has been saved more than just a few times.