-
Notifications
You must be signed in to change notification settings - Fork 21
/
thunar-media-info.sh
executable file
·140 lines (123 loc) · 2.83 KB
/
thunar-media-info.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
#!/bin/sh
#
# Get media information about audio/video files.
#
# * Put this file into your home binary dir: ~/bin/
# * Make it executable: chmod +x
#
#
# Required Software:
# -------------------------
# * zenity (for gui mode - default)
# * ffmpeg
#
#
# Thunar Integration
# ------------------------
#
# Command: ~/bin/thunar-media-info.sh -f %f -t %n
# File Pattern: *
# Appear On: Audio Files, Video Files
#
#
# Usage:
# -------------------------
# thunar-media-info.sh -f <filename> [-c] [-w width(int)] [-h height(int)] [-t window-title]
#
# required:
# -f input filename
#
# optional:
# -c no-gui, show console output (zenity not required)
# default is to show gui
#
# -w (gui) width of window (e.g.: -w 800)
# default is 800
#
# -h (gui) height of window (e.g.: -h 240)
# default is 240
#
# -t (gui) window title
# default is filename
#
# Note:
# -------------------------
#
# Feel free to adjust/improve and commit back to:
# https://github.com/cytopia/thunar-custom-actions
#
usage() {
echo "$0 -f <filename> [-c] [-w width(int)] [-h height(int)] [-t window-title]"
echo
echo " required:"
echo " -f input filename"
echo
echo " optional:"
echo " -c no-gui, show console output (zenity not required)"
echo " default is to show gui"
echo
echo " -w (gui) width of window (e.g.: -w 800)"
echo " default is 800"
echo
echo " -h (gui) height of window (e.g.: -h 240)"
echo " default is 240"
echo
echo " -t (gui) window title"
echo " default is filename"
echo
exit 1
}
while getopts ":f:cw:h:t:" i; do
case "${i}" in
f)
f=${OPTARG}
;;
c)
c=yes
;;
w)
w=${OPTARG}
;;
h)
h=${OPTARG}
;;
t)
t=${OPTARG}
;;
*)
echo "Error - unrecognized option $1" 1>&2;
usage
;;
esac
done
shift $((OPTIND-1))
# Check if file is specified
if [ -z "${f}" ]; then
echo "Error - no file specified" 1>&2;
usage
fi
# Check if zenity exists
if ! command -v zenity >/dev/null 2>&1 ; then
echo "Error - 'zenity' not found." 1>&2
exit 1
fi
# Check if zenity exists
if ! command -v ffmpeg >/dev/null 2>&1 ; then
echo "Error - 'ffmpeg' not found." 1>&2
exit 1
fi
########################## console output ###############################
# Do we have textbased output?
if [ -n "${c}" ]; then
ffmpeg -i "${f}" 2>&1 \
| grep -e Stream -e Duration -e Input
exit 0
fi
########################## gui output ###############################
[ ! -z "${w##*[!0-9]*}" ] && WIDTH=$f || WIDTH=800
[ ! -z "${h##*[!0-9]*}" ] && HEIGHT=$f || HEIGHT=240
[ -n "${t}" ] && TITLE=$t || TITLE="Media Info for: $(basename "${f}")"
ffmpeg -i "${f}" 2>&1 \
| grep -e Stream -e Duration -e Input \
| zenity --width=${WIDTH} --height=${HEIGHT} --text-info --title "${TITLE}"
exit 0