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:
The black video will have the same frame size and frame rate but since all black frames compress very well the final file won't be much larger than just the audio stream.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:
That creates a video that 32x16 pixels at the same frame rate as the source. I didn't time the conversion but a 90 minute movie took about a minute. The original movie was 1.4 GB, the resulting mkv was 128 MB. The audio data alone was 124 MB.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, 23:37 -
Possible wrong frame rate after IVTC, leave it or change?
By attackworld in forum EditingReplies: 7Last Post: 4th Sep 2018, 09:21 -
MPC-HC64 enter/leave fullscreen drops signal?
By KeithWood in forum Software PlayingReplies: 12Last Post: 1st Sep 2018, 02:10 -
Does DVDFab leave a watermark
By tarzan54 in forum Blu-ray RippingReplies: 7Last Post: 27th Oct 2016, 21:40 -
Handbrake: How can I convert video only and leave the audio untouched?
By Foebane72 in forum Video ConversionReplies: 2Last Post: 9th Oct 2016, 11:18


Quote