vlc-protocol
vlc-protocol copied to clipboard
Simple and efficient - Love it !
Hey, just passing by and saying thanks, this works great on Fedora.
Kudos !
Great to hear! :)
We can leave this issue open as an appreciation thread. 🎉
Write whatever you want in here.
Thank you for creating this!
I totally love this! I was trying to find a way so that when I browse to a video link on my nas, the link will automatically open in vlc without me having to manually trigger it. This totally helps to achieve that!
Brief of how I did it:
- Install chrome extension 'Open with VLC'
- Install chrome extension REDIRECTOR
- Add redirect rule to add vlc:// to url matching one to NAS
- Install the vlc:// handler (easy version with batch file)
- The default batch file will truncate a url if it encounters a &, so I had to modify the batch as such:
Setlocal EnableDelayedExpansion set url=%1 start "VLC" "%~dp0vlc.exe" "%url:~7%"
My browser would originally popup a window asking me if it's ok that this site is trying to open the vlc handler batch file. I've found ways to disable that popup so now everything works automatically.