diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-05-27 09:22:40 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-05-27 09:22:40 -0400 |
| commit | a6cee230d0cad7b1037e3bca0e7e78123cc432cc (patch) | |
| tree | 9ca13b1161a14aae7acc91a855dc974f592479f2 /.local/bin/tag | |
| parent | a8ff531a3c4671dda3f2710ffdebde9820635912 (diff) | |
| download | eibhear-a6cee230d0cad7b1037e3bca0e7e78123cc432cc.tar.gz eibhear-a6cee230d0cad7b1037e3bca0e7e78123cc432cc.tar.zst eibhear-a6cee230d0cad7b1037e3bca0e7e78123cc432cc.zip | |
for video;
remember to install opustags, ffmpeg and youtube-dl
Diffstat (limited to '.local/bin/tag')
| -rwxr-xr-x | .local/bin/tag | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/.local/bin/tag b/.local/bin/tag new file mode 100755 index 0000000..c23be4e --- /dev/null +++ b/.local/bin/tag @@ -0,0 +1,59 @@ +#!/bin/sh + +err() { echo "Usage: + tag [OPTIONS] file +Options: + -a: artist/author + -t: song/chapter title + -A: album/book title + -n: track/chapter number + -N: total number of tracks/chapters + -d: year of publication + -g: genre + -c: comment +You will be prompted for title, artist, album and track if not given." && exit 1 ;} + +while getopts "a:t:A:n:N:d:g:c:f:" o; do case "${o}" in + a) artist="${OPTARG}" ;; + t) title="${OPTARG}" ;; + A) album="${OPTARG}" ;; + n) track="${OPTARG}" ;; + N) total="${OPTARG}" ;; + d) date="${OPTARG}" ;; + g) genre="${OPTARG}" ;; + c) comment="${OPTARG}" ;; + f) file="${OPTARG}" ;; + *) printf "Invalid option: -%s\\n" "$OPTARG" && err ;; +esac done + +shift $((OPTIND - 1)) + +file="$1" + +[ ! -f "$file" ] && echo "Provide file to tag." && err + +[ -z "$title" ] && echo "Enter a title." && read -r title +[ -z "$artist" ] && echo "Enter an artist." && read -r artist +[ -z "$album" ] && echo "Enter an album." && read -r album +[ -z "$track" ] && echo "Enter a track number." && read -r track + +case "$file" in + *.ogg) echo "Title=$title +Artist=$artist +Album=$album +Track=$track +Total=$total +Date=$date +Genre=$genre +Comment=$comment" | vorbiscomment -w "$file" ;; + *.opus) echo "Title=$title +Artist=$artist +Album=$album +Track=$track +Total=$total +Date=$date +Genre=$genre +Comment=$comment" | opustags -i -S "$file" ;; + *.mp3) eyeD3 -Q --remove-all -a "$artist" -A "$album" -t "$title" -n "$track" -N "$total" -Y "$date" "$file" ;; + *) echo "File type not implemented yet." ;; +esac |
