aboutsummaryrefslogtreecommitdiffstats
path: root/mpv-play
blob: 906c7781f641fbc329837a543e96350299e07fa8 (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/bash

if [[ -z $1 ]]; then 
    echo "You need to pass the URL."
    exit 0
fi

URL="$1"
mpv --profile=fast --hwdec=auto-safe  "$URL"