Being a proud owner of the excellent lightroom tutorial I had a small problem. I wanted to view the tutorials on my iPad2. No problem there if you read the FAQ and use goodReader, but that cannot solve one minor problem. My iPad is out of storage.
So I tried streaming the videofiles to my iPad over my home network by putting them on my NAS. However I could not stream them, the iPad won't open the video when I browse to the files using Safari.
VLC worked perfectly, and even using firefox on Ubuntu 12.04 could connect to the stream, but hey, a desktop or a 17" buzzing laptop in bed is not an acceptable solution.
A Google search learned that the files should be in mp4 format for streaming to the iPad. Instead of a lot of windows based solutions Linux turned out to be my friend. With a single command I could convert the .mov files lossless to .mp4 using avconv in ubuntu 12.04
avconv -i filename.mov -c copy filename.mp4
In fact it turned out to be even simpler. Just renaming the files from .mov to .mp4 worked as well.
Cheers Vic