Best way to import movies into Unity (for the Movie Texture)

I can get the movie imported/playing fine, but the problem is the loss of quality. Basically, I’m building a movie player (where you can cycle between the films) and need to get the best quality/less pixelization out of them (filesize is no issue). I’ve tried maxing out the “quality” slider, but it doesnt seem to help. Is there a certain size/format that works best with unity? (I know it naturally converts the file when I import it) I’m just displaying the movie on a plane with the same aspect ratio in unity if that helps.

The best way is to convert to ogg theora through a tool that uses a current version of ffmpeg and ffmpeg2theora

Format must be ogg theora, as thats the only format unity supports, all the rest is internally recompressed to ogg theora which is the reason for the lose of quality

Awesome, I couldnt figure out how to use the ffmpeg2theora but I did use Miro Video Converter and it worked great!

Thanks for your quick response too!