4
1
I have problem sorting videos in VLC because it is using the metadata title to sort them, but they all have the same title. Which is why I want to remove all metadata, especially titles.
How can I achieve this easiest and safest? I have over 2000 video files to process and I dont want to break them in the process.
The video files are in format .avi, .mp4, .mkv, .wmv, and more.

Same problem with vlc android.. – bh_earth0 – 2018-04-15T16:12:26.730
1
ffmpeg -i in.mov -map_metadata -1 -c:v copy -c:a copy out.movworks from the FFmpeg answer, but it creates own title. I need to remove the title completely, so it would display just the filename (not with the folder path). How could i do this? – Rookie – 2014-06-15T11:27:54.360