Pregunta

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

Thanks

¿Fue útil?

Solución

Converting video file into nsdata

NSData *videoData = [NSData dataWithContentsOfFile:videofilepath];

or else video from url

NSData *videoData = [NSData dataWithContentsOfURL:videourl];
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top