Created
March 18, 2016 15:37
-
-
Save tatic0/b748c6468022f9fc70a5 to your computer and use it in GitHub Desktop.
launch vlc for multicast streams (to be used as an alias)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
udp(){ | |
if [ ! -z "$2" ] ; then | |
vlc udp://@$1:$2 | |
else | |
vlc udp://@$1:1234 | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks to @RoyTrenneman for the idea