I can\'t get the full NSURL of the editedVideoPath, here\'s my code:
// GLOBAL VARIABLES var videoPath = String() var videoURL = NSURL() // Video Edito
Since you're using a file path, you want to use
NSURL(fileURLWithPath: editedVideoPath)
instead of
NSURL(string: editedVideoPath)