Compare commits
4 Commits
2019-04-17
...
2019-07-07
Author | SHA1 | Date | |
---|---|---|---|
c377f57173 | |||
343df18c83 | |||
b6d2c0b38b | |||
a39f4c9c51 |
48
audiotrim.sh
48
audiotrim.sh
@ -1,48 +0,0 @@
|
||||
#!/usr/bin/bash
|
||||
# Trim an audio file given a startpoint and an endpoint
|
||||
# Dependencies: ffmpeg
|
||||
|
||||
printHelp() {
|
||||
cat << EOF
|
||||
Usage: audiotrim [input file] [start time] [stop time] [output file]
|
||||
|
||||
Options:
|
||||
-h show this help page
|
||||
EOF
|
||||
}
|
||||
|
||||
while true; do
|
||||
case "${1}" in
|
||||
'-h'|'--help')
|
||||
printHelp
|
||||
exit
|
||||
;;
|
||||
--)
|
||||
shift
|
||||
break
|
||||
;;
|
||||
-*)
|
||||
printf '%s\n' "Unknown option: ${1}"
|
||||
exit 1
|
||||
;;
|
||||
*)
|
||||
break
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [[ ! -x '/usr/bin/ffmpeg' ]]; then
|
||||
printf '%s\n' 'ffmpeg program is not installed' >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
readonly infile="${1}"
|
||||
readonly starttime="${2}"
|
||||
readonly stoptime="${3}"
|
||||
readonly outfile="${4}"
|
||||
readonly format="${1%.*}"
|
||||
|
||||
[[ -z "${infile}" ]] && printf '%s\n' "No file entered." >&2 exit 2
|
||||
[[ ! -f "${infile}" ]] && printf '%s\n' "Not a file: ${infile}" >&2 exit 3
|
||||
|
||||
ffmpeg -i "${infile}" -ss "${starttime}" -to "${stoptime}" -c copy "${outfile:-"${outfile%.*}-trimmed.${format}"}"
|
57
dlaudio.py
57
dlaudio.py
@ -1,57 +0,0 @@
|
||||
#!/usr/bin/python3
|
||||
"""Download audio using youtube-dl.
|
||||
|
||||
Dependencies:
|
||||
=============
|
||||
* youtube-dl
|
||||
"""
|
||||
|
||||
import argparse
|
||||
import pathlib
|
||||
import shutil
|
||||
import subprocess
|
||||
|
||||
# =========== Constants ==========
|
||||
YOUTUBE_DL_BIN = shutil.which("youtube-dl")
|
||||
DEFAULT_FILENAME = f"{pathlib.Path.home()}/Music/%(title)s.%(ext)s"
|
||||
|
||||
# ========== Error Codes ==========
|
||||
E_NOURLS = 2
|
||||
|
||||
# ========== Main Script ==========
|
||||
parser = argparse.ArgumentParser()
|
||||
parser.add_argument("-b", "--batchfile", help="provide the links from a text file")
|
||||
parser.add_argument(
|
||||
"-f", "--format", type=str, default="opus", help="the format to use"
|
||||
)
|
||||
parser.add_argument(
|
||||
"-n", "--filename", type=str, help="downloaded filename (without extension)"
|
||||
)
|
||||
parser.add_argument("urls", nargs="*", help="video URLs")
|
||||
args = parser.parse_args()
|
||||
|
||||
dl_opts = [
|
||||
YOUTUBE_DL_BIN,
|
||||
"--no-part",
|
||||
"--no-continue",
|
||||
"--extract-audio",
|
||||
f"--audio-format={args.format}",
|
||||
]
|
||||
|
||||
# filename handling
|
||||
# if -b is used, DEFAULT_FILENAME must take precedence
|
||||
if args.filename is not None and args.batchfile is None:
|
||||
dl_opts.append(f"--output={args.filename}")
|
||||
else:
|
||||
dl_opts.append(f"--output={DEFAULT_FILENAME}")
|
||||
|
||||
# URL handling
|
||||
if args.batchfile is not None:
|
||||
dl_opts.append(f"--batch-file={args.batchfile}")
|
||||
elif args.urls is not None:
|
||||
dl_opts.extend(args.urls)
|
||||
else:
|
||||
print("URLs are required")
|
||||
exit(E_NOURLS)
|
||||
|
||||
subprocess.run(dl_opts)
|
@ -1,14 +0,0 @@
|
||||
#compdef dlaudio
|
||||
|
||||
# zsh completions for 'dlaudio'
|
||||
local arguments
|
||||
|
||||
arguments=(
|
||||
{-h,--help}'[show this help message and exit]'
|
||||
{-b,--batch-dl}'[provide the links from a text file]'
|
||||
{-f,--format}'[the format to use (default:flac)]'
|
||||
{-n,--filename}'[the name of the downloaded file (without extension)]'
|
||||
'*:filename:_files'
|
||||
)
|
||||
|
||||
_arguments -s $arguments
|
Reference in New Issue
Block a user