3분 미만의 모든 비디오 파일을 이동/이름 바꾸기(및/또는 심볼릭 링크 생성)하는 bash 스크립트를 만들려고 합니다.
지금까지 나는 다음과 같은 find 명령을 가지고 있습니다.
find "$findpath" -maxdepth "2" -type f -name '*.mp4' -print -exec avprobe -v error -show_format_entry duration {} \;
그런 다음
if [ $duration -ge $DUR_MIN -a $dur -le $DUR_MAX ]
cd "$path2"
ln -sFfhv "$path1$file" "$file2"
fi
답변1
이것이 당신이 원하는 것입니까?
dur_min=180
dur_max=3600 # or whatever you want the max to be
# find the appropriate files and deal with them one at a time
find "$findpath" -maxdepth 2 -type f -iname '*.mp4' -print |
while read file ; do
# read duration
duration="$(ffprobe -v quiet -print_format compact=print_section=0:nokey=1:escape=csv -show_entries format=duration "$file")"
# trim off the decimals; bash doesn't do floats
duration=${duration%.*}
if [[ $duration -gt $dur_min ]] && [[ $duration -lt $dur_max ]] ; then
echo "$file is $duration seconds long (rounded down)"
# do whatever you want, mv, ln, etc.
fi
done
iname
참고 대소문자를 구분 하지 않고 name
(*.MP4 등) 사용합니다 .
또한 나는 avprobe(내가 가지고 있지 않음) 대신 ffprobe를 사용하고 있지만 ffmpeg 태그가 있으므로 괜찮을 것 같습니까?