diff --git a/index.html b/index.html index 7db0ee9..e86a8c6 100644 --- a/index.html +++ b/index.html @@ -1206,7 +1206,7 @@ - +
ffmpeg -f concat -safe 0 -i mylist.txt -c copy output_file + + Strip metadata + + + + + Strips metadata from video file + ffmpeg -i input_file -map_metadata -1 -c:v copy -c:a copy output_file + + ffmpegstarts the command + -i input_filepath, name and extension of the input file + -map_metadata -1sets metadata copying to -1, which copies nothing + -vcodec copycopies video track + -acodec copycopies audio track + output_fileMakes copy of original file and names output file + + + + + + + +
ffmpeg -i input_file -map_metadata -1 -c:v copy -c:a copy output_file