17 lines
		
	
	
		
			281 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			281 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| fetch () {
 | |
| 	echo "Downloading $1..."
 | |
| 
 | |
| 	wget -q "https://registry.npmjs.org/@ffmpeg/$1/-/$1-$2.tgz"
 | |
| 
 | |
| 	mkdir -p public/assets/scripts/$1
 | |
| 	tar -xzf "$1-$2.tgz" --directory public/assets/scripts/$1
 | |
| }
 | |
| 
 | |
| mkdir -p public/assets/scripts
 | |
| 
 | |
| fetch ffmpeg 0.12.15
 | |
| fetch core 0.12.10
 | |
| 
 |