I have a video that I want to delete its screen but leave only the sound, but at the end of the day it should still be in video format... not a mp3 or mp4 or other sound format
probably everything becomes black or any other color , not a problem
How can I make it?
Looking for easy method please...
+ Reply to Thread
Results 1 to 3 of 3
-
-
mp4 is a video format.
It can be done with ffmpeg.
What's the input format / audio codec ? -
There are many ways one could do this. Using ffmpeg you could make all the frames black and reencode them:
Code:ffmpeg -i input.mkv -vf lutyuv="y=16:u=128:v=128" -c:v libx264 -preset ultrafast -c:a copy black.mkv
You could also scale the frame smaller for faster encoding and a smaller window on playback:
Code:ffmpeg -i input.mkv -vf scale=32:16,lutyuv="y=16:u=128:v=128" -c:v libx264 -preset ultrafast -c:a copy black.mkv
Similar Threads
-
Which is best? Convert to Blu-ray format or leave as MKV?
By Yanta in forum MediaReplies: 11Last Post: 13th Jun 2019, 22:37 -
Possible wrong frame rate after IVTC, leave it or change?
By attackworld in forum EditingReplies: 7Last Post: 4th Sep 2018, 08:21 -
MPC-HC64 enter/leave fullscreen drops signal?
By KeithWood in forum Software PlayingReplies: 12Last Post: 1st Sep 2018, 01:10 -
Does DVDFab leave a watermark
By tarzan54 in forum Blu-ray RippingReplies: 7Last Post: 27th Oct 2016, 20:40 -
Handbrake: How can I convert video only and leave the audio untouched?
By Foebane72 in forum Video ConversionReplies: 2Last Post: 9th Oct 2016, 10:18