You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just an idea. I think you can pipe the downloaded data directly into ffmpeg (or gstreamer), not consume temporary disk space or RAM and skip the post-download merging.
Just an idea. I think you can pipe the downloaded data directly into ffmpeg (or gstreamer), not consume temporary disk space or RAM and skip the post-download merging.
Proof of concept in bash:
produces a file that is immediately playable and seekable with VLC.
So, maybe ytarchive could use
in_fdN, out_fdN = os.pipe()
,-i pipe:{out_fd1} -i pipe:{out_fd2}
and write to those fds directly.The text was updated successfully, but these errors were encountered: