13 lines
		
	
	
		
			249 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			249 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
 | 
						|
# --embed-thumbnail \
 | 
						|
# --audio-format opus \
 | 
						|
yt-dlp \
 | 
						|
    --ignore-errors \
 | 
						|
    -f bestaudio \
 | 
						|
    --rm-cache-dir \
 | 
						|
    --extract-audio \
 | 
						|
    --output "%(title)s.%(ext)s" --add-metadata \
 | 
						|
    --download-archive downloaded.txt \
 | 
						|
    -a -
 |