I like to watch flv videos during downtimes using my ipad. Whats a good tool for converting video files and then tossing them onto the ipad. Primarily I've grabbed a few flv tutorials off you tube. I know ffmpeg can do the transform, but it's got one of those "needs a phd in video" to sort out...
Asked
Active
Viewed 1,829 times
4 Answers
4
Try:
- Arista Transcoder (Seems to be specially for devices like ipods/phones etc.)
- WinFF (GUI for FFMPEG)
- OggConvert (Converts to free formats)
These can all be found in the Ubuntu Software Centre.
EDIT: Arista is probably the best of these as it has a preset for the ipad.
1
I find that MediaCoder works quite well for video transcoding. It has presets for iPod/iPad and runs just fine under Wine.
Nathan Osman
- 32,495
0
Hands down best video encoder. Handbrake.
Handbrake is not available from the repositories. You can install it from a ppa though:
<
stephenmyall
- 9,885
myusuf3
- 35,659
0
Once you have the codecs installed, you just need to learn one ffmpeg command to re-encode your videos:
ffmpeg -i in.flv -vcodec libx264 -acodec libfaac -sameq out.mp4
For help with codecs, I recommend this useful page at Ubuntu help.
brousch
- 2,630