This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| import subprocess | |
| import time | |
| # This script is intended to transcode *.mkv files. | |
| # It uses docker image from https://github.com/lisamelton/other_video_transcoding . | |
| # It transcodes the videos inside the rootdir to max quality H264 mkv files. | |
| # The docker container utilizes intel quick sync hardware encoder. | |
| # This can be run inside a tmux session overnight. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This was coded by claude.ai | |
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "net" | |
| "os" | |
| "os/exec" |
OlderNewer