>>90394565I installed Yt-Dlp, Ffmpeg (so you can enter certain command line prompts into powershell), as well as KDENLIVE, and the tapermonkey soundpost script for my browser
Sounds like too much work? It is easy to set up and will take you 10 minutes tops. The rest is just copy pasting stuff and simple clicks.
Here is what I do:
Step 1:
I clip what I want to use or find a video that I want to turn into a sound post
Step2:
Download it using powershell (windows command prompt tool)
Step3: Do one proper cut with KDENLIVE, render the audio and video seperately (if you really want to you can make edits here. It is a fully capable free editing software)
I am lazy, so I always output the file as "input.mp4" so I do not have to change the text prompts
Step 4:
Run the rendered video through ffmpeg (powershell prompt) to get a smaller file size for the mp4 file
Step5: convert to webm with ffmpeg
Step 6: upload the audio and video with the tapermonkey script as a sound post
I use the following command line prompts that I have saved in a text file, so I just have to copy and paste them
yt-dlp -o 'C:/Users/YOUR NAME GOES HERE/Videos/%(title)s.%(ext)s'
https://www.youtube.com/watch?v=WZr6BBZyJKU --cookies-from-browser firefox
ffmpeg -i C:\Users\YOUR NAME GOES HERE\Videos\input.mp4 -c:v libx264 -pix_fmt yuv420p -crf 28 -vf scale=-1:480 C:\Users\YOUR NAME GOES HERE\Videos\output.mp4
ffmpeg -i C:\Users\YOUR NAME GOES HERE\Videos\output.mp4 -c:v libvpx-vp9 -crf 40 -b:v 0 -b:a 128k -c:a libopus C:\Users\YOUR NAME GOES HERE\Videos\output.webm
All you gotta do is to adjust crf value to get the desired file size. Maybe adjust the scale in the second prompt to resize the video if the file size is too large
There is probably better ways to do this, but this works for me. And I have no idea how to operate ffmpeg. I just asked chatGPT for prompts