After some testing, app cannot download videos which name contain special character for example ". In terminal it outputs info about no write permission. I think it is due to file system (MyDocs partition is vfat, so names of files cannot contain special characters). It can be fixed by changing special chars to _ . Does someone also noticed it?
video.title.replace(/[@&~=\/:?#|]/g, "_") + ".mp4"