Hey folks,
I need to upload an audio file (2 minutes) to YouTube. But they accept only videos. When I google this, I get hundreds of replies that try to sell some fat software to do the job. But I only have to do this once. Is there also a cool solution? BTW, I already know that I need some 1920 x 1080 graphic, and I already made one. Just need the conversion and the upload.
thanks,
Don
Upload Audio to YouTube
Re: Upload Audio to YouTube
I guess some mkv format may help here.
From the Makemkv forum:
From the Makemkv forum:
Code: Select all
I suspect that the issue is that MakeMKV is assuming that, since you're using Matroska video format file, you would want the video... :)
You can let MakeMKV create the MKV file, then use tools like mkvmerge to extract just the track(s) you want into your "final" file.
Windows 11 Home x64 Version 23H2 (OS Build 22631.3007)
Portable XYplorer (actual version, including betas)
Everything 1.5.0.1366a (x64), Everything Toolbar 1.3.2, Listary Pro 6.3.0.63
Portable XYplorer (actual version, including betas)
Everything 1.5.0.1366a (x64), Everything Toolbar 1.3.2, Listary Pro 6.3.0.63
Re: Upload Audio to YouTube
One of my scripts helped you out? Please donate via Paypal or paypal_donate (at) stdmail (dot) de
Re: Upload Audio to YouTube
Code: Select all
ffmpeg -loop 1 -framerate 1 -i input.png -i input.mp3 -c:v libx264 -preset veryslow -crf 0 -c:a copy -shortest output.mkv
https://github.com/BtbN/FFmpeg-Builds/releases
-
- Site Admin
- Posts: 59751
- Joined: 22 May 2004 16:48
- Location: Win8.1 @100%, Win10 @100%
- Contact:
Re: Upload Audio to YouTube
ffmpeg looks good! But which is the right download link? I see 4 of them for Windows...
FAQ | XY News RSS | XY Twitter
-
- Site Admin
- Posts: 59751
- Joined: 22 May 2004 16:48
- Location: Win8.1 @100%, Win10 @100%
- Contact:
Re: Upload Audio to YouTube
Started well, then stopped with error "Unknown encoder 'libx264'" (running on Win8.1).
FAQ | XY News RSS | XY Twitter
Re: Upload Audio to YouTube
https://github.com/BtbN/FFmpeg-Builds/r ... pl-5.1.zip
That one works fine with a input.png and input.mp3...
That one works fine with a input.png and input.mp3...
One of my scripts helped you out? Please donate via Paypal or paypal_donate (at) stdmail (dot) de