mirror of
https://github.com/mpv-player/mpv
synced 2025-01-23 16:13:39 +00:00
TOOLS: add script for using mpv with youtube-dl
Signed-off-by: wm4 <wm4@nowhere>
This commit is contained in:
parent
17d0609d1e
commit
65099833f7
23
TOOLS/youtube-dl_mpv.sh
Normal file
23
TOOLS/youtube-dl_mpv.sh
Normal file
@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
# Example of script for using mpv with youtube-dl
|
||||
set -e
|
||||
|
||||
cookies_dir="$(mktemp -d /tmp/youtube-dl_mpv.XXXX)"
|
||||
cookies_file="${cookies_dir}/cookies"
|
||||
user_agent="$(youtube-dl --dump-user-agent)" # or set whatever you want
|
||||
|
||||
video_url="$(youtube-dl \
|
||||
--user-agent="$user_agent" \
|
||||
--cookies="$cookies_file" \
|
||||
--get-url \
|
||||
"$1")"
|
||||
|
||||
shift
|
||||
|
||||
mpv \
|
||||
--cookies \
|
||||
--cookies-file="$cookies_file" \
|
||||
--user-agent="$user_agent" \
|
||||
"$@" -- $video_url
|
||||
|
||||
rm -rf "$cookies_dir"
|
Loading…
Reference in New Issue
Block a user