This file contains 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
#!/usr/bin/env ruby | |
# | |
# hb-av1-transcode.rb | |
# | |
# Copyright (c) 2019-2023 Don Melton | |
# | |
require 'English' | |
require 'fileutils' | |
require 'json' |
This file contains 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
% | |
% manuscript.latex | |
% | |
% Copyright (c) 2022 Don Melton | |
% | |
% LaTeX template for Pandoc to create PDFs in standard manuscript format | |
% with both short story and novel layouts. | |
% | |
% Version: 2022052301 | |
% |
This file contains 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
#!/usr/bin/env ruby | |
# | |
# classic-transcode.rb | |
# | |
# Copyright (c) 2019-2022 Don Melton | |
# | |
require 'English' | |
require 'fileutils' | |
require 'json' |
This file contains 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
#!/usr/bin/env ruby | |
# | |
# special-transcode.rb | |
# | |
# Copyright (c) 2019-2022 Don Melton | |
# | |
require 'English' | |
require 'fileutils' | |
require 'json' |
This file contains 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
#!/bin/bash | |
# | |
# commentary-tracks.sh | |
# | |
# Copyright (c) 2013-2019 Don Melton | |
# | |
die() { | |
echo "$(basename "$0"): $1" >&2 | |
exit ${2:-1} |
This file contains 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
#!/bin/bash | |
# | |
# experimental-x264-avbr-transcode-video.sh | |
# | |
# Copyright (c) 2013-2019 Don Melton | |
# | |
die() { | |
echo "$(basename "$0"): $1" >&2 | |
exit ${2:-1} |
This file contains 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
#!/bin/bash | |
# | |
# prune-handbrake-log.sh | |
# | |
# Copyright (c) 2018 Don Melton | |
# | |
if (($# == 1)); then | |
cat "$1" | ruby -e "print STDIN.read.gsub(/^.*\r(.)/, '\1')" | |
fi |
This file contains 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
#!/bin/bash | |
# | |
# experimental-simple-transcode-video.sh | |
# | |
# Copyright (c) 2013-2018 Don Melton | |
# | |
die() { | |
echo "$(basename "$0"): $1" >&2 | |
exit ${2:-1} |
This file contains 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
#!/bin/bash | |
# | |
# experimental-abr-transcode-video.sh | |
# | |
# Copyright (c) 2013-2017 Don Melton | |
# | |
die() { | |
echo "$(basename "$0"): $1" >&2 | |
exit ${2:-1} |
This file contains 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
Transcode video file or disc image directory into format and size similar to | |
popular online downloads. Works best with Blu-ray or DVD rip. | |
Automatically determines target video bitrate, number of audio tracks, etc. | |
WITHOUT ANY command line options. | |
Usage: transcode-video [OPTION]... [FILE|DIRECTORY]... | |
Input options: | |
--scan list title(s) and tracks in video media and exit |
NewerOlder