mirror of
https://github.com/zedsalim/debian-z.git
synced 2025-12-06 11:29:28 +00:00
8 lines
103 B
Bash
8 lines
103 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
echo "Enter your URL: "
|
||
|
|
|
||
|
|
read url
|
||
|
|
|
||
|
|
mpv --ytdl-raw-options=format="best[height<=720]" $url
|