5 lines
183 B
Fish
5 lines
183 B
Fish
# ffprobe_duration <file>
|
|
# print duration of video file
|
|
function ffprobe_duration
|
|
ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 $argv
|
|
end
|