mirror of
				https://github.com/casjaysdevdocker/youtube-dl
				synced 2025-11-04 01:02:35 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			329 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			329 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/usr/bin/env sh
 | 
						|
# Set bash options
 | 
						|
[ -n "$DEBUG" ] && set -x
 | 
						|
set -o pipefail
 | 
						|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 | 
						|
youtube-dl -f bestaudio --extract-audio --audio-format mp3 --embed-thumbnail --add-metadata --audio-quality 320k --config-location "$HOME/.config/youtube-dl/music" "$@"
 | 
						|
exit $?
 | 
						|
 |