Pergunta

Can I know how to convert a video file in the format m4v to NSData and vice versa?

Thanks

Foi útil?

Solução

Converting video file into nsdata

NSData *videoData = [NSData dataWithContentsOfFile:videofilepath];

or else video from url

NSData *videoData = [NSData dataWithContentsOfURL:videourl];
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top