MOV to Mp4 video conversion iPhone programmatically

后端 未结 7 1599
南方客
南方客 2020-12-01 01:11

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

7条回答
  •  不思量自难忘°
    2020-12-01 01:32

    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 :-)

提交回复
热议问题