Removing recent network playlist in VLC media player.
If you have used VLC to stream videos online, then you might have noticed that there is no way for you to clear the recently played URLs from the dropdown list. This list will persist even if you clear the recent media by Media -> Open Recent Media -> Clear.
It took me 2 hours to find it, by digging through the source code. That is the beauty of open source.
The solution, on Linux, VLC stores the list of recently played files in path, /home/<USER>/.config/vlc/vlc-qt-interface.conf where <USER> is the name of your user name.
Open the vlc-qt-interface.conf file and search for netMRL, there will be comma separated list of URLs assigned to the netMRL variable. Remove everything after the equal sign till the end of line. Or you can remove particular URLs from the CSV.
Similary, you will also find the recentMRL in the same file. You can edit that as well.
It took me 2 hours to find it, by digging through the source code. That is the beauty of open source.
The solution, on Linux, VLC stores the list of recently played files in path, /home/<USER>/.config/vlc/vlc-qt-interface.conf where <USER> is the name of your user name.
Open the vlc-qt-interface.conf file and search for netMRL, there will be comma separated list of URLs assigned to the netMRL variable. Remove everything after the equal sign till the end of line. Or you can remove particular URLs from the CSV.
Similary, you will also find the recentMRL in the same file. You can edit that as well.