You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			11 lines
		
	
	
		
			478 B
		
	
	
	
		
			Bash
		
	
			
		
		
	
	
			11 lines
		
	
	
		
			478 B
		
	
	
	
		
			Bash
		
	
#!/bin/bash
 | 
						|
# Script to download the latest x64 windows version of custom ffmpeg build for yt-dlp
 | 
						|
# The binary will be placed in the root dir of the app
 | 
						|
 | 
						|
rm ffmpeg
 | 
						|
wget "https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/ffmpeg-n5.1-latest-win64-gpl-5.1.zip"
 | 
						|
unzip ffmpeg-n5.1-latest-win64-gpl-5.1.zip
 | 
						|
cp ffmpeg-n5.1-latest-win64-gpl-5.1/bin/ffmpeg.exe ffmpeg.exe
 | 
						|
chmod 777 ffmpeg.exe
 | 
						|
rm -rf ffmpeg-n5.1-latest-win64-gpl-5.1
 | 
						|
rm ffmpeg-n5.1-latest-win64-gpl-5.1.zip |