I am developing media server for Play station 3 in iPhone.
I came to know that PS3 doesn\'t support .MOV file so I have to convert it into Mp4 or something other tra
just wanted to say that the URL can not be like
[NSURL URLWithString: [@"~/Documents/movie.mov" stringByExpandingTildeInPath]]
It must be like
[NSURL fileURLWithPath: [@"~/Documents/movie.mov" stringByExpandingTildeInPath]]
Took me a while to figure that out :-)