blob: 11043481c12637df89f9eab48f5360a079c767a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env bash
# necessary for Lynx browser video files
# chmod +x and place in your PATH
if grep -q "\#EXT3MU" $1 ; then
# this is a playlist
echo "Playing..."
mpv --geometry=800x600 --title="Mpv" --playlist=$1 >/dev/null 2>&1 &
exit
else
mpv --geometry=800x600 --title="Mpv" $1 >/dev/null 2>&1 &
fi
|