Quote:
I get the well-known message: "Video / Audio quality: Your videos will process faster if you encode into a streamable file format. For more information, visit our Help Center." (https://support.google.com/youtube/answer/1722171?hl=en)
For your original issue and topic, to my knowledge PD14 cannot do that.
In order to do that, what YouTube needs to know is the data structure of the video container, in particular what's called a moov atom. For most local encode tasks, this information is at the end of a file so the entire file needs to upload prior to YT doing it's encode conversion. Many tools have the ability to move this information to the front of the file so processing can start immediately.
If you are familiar with ffmeg, one could move the info to the start of the file prior to uploading with a command like this: ffmpeg -i myinput.mp4 -codec copy -map 0 -movflags +faststart myoutput.mp4
Again, not required, just allows YT to start renencoding file immediately vs wating for upload to complete.
Jeff