mirror of
				https://github.com/k4yt3x/video2x.git
				synced 2025-10-31 04:40:59 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			216 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			216 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| set -euxo pipefail
 | |
| 
 | |
| sudo podman run \
 | |
|     -it --rm --gpus all -v /dev/dri:/dev/dri \
 | |
|     -v $PWD/data:/host \
 | |
|     ghcr.io/k4yt3x/video2x:5.0.0-beta3-cuda \
 | |
|     -i input.mp4 -o output.mp4 \
 | |
|     interpolate
 |