In my app a video is recorded by the user. When the user finishes recording, the video is then compressed using a compression algorithm which returns the video as NSData. I am then writing the data to a file and saving it to my server.
I am retrieving the saved videos and displaying them on a tableView
. In theory there could be dozens of videos on the feed.
When I retrieve a video from the server and decompress it, I am stuck with an NSData object.
I am looking for help turning this object into an AVAsset
without saving the file to the device.
Any help is appreciated