混世魔头
查看详细资料
TOP
#/bin/bash function dealwithonefile() { filename=$1 if echo "${filename##*.}" | grep -iqw "mkv" then tmpfilename=$filename".tmp.mkv" echo dealing with $filename $tmpfilename echo ffmpeg -i $filename -y -vcodec copy -sn -acodec ac3 -b:a 640k $tmpfilename ffmpeg -i $filename -y -vcodec copy -sn -acodec ac3 -b:a 640k $tmpfilename if [ $? == 0 ]; then sleep 1m rm $filename mv $tmpfilename $filename return 0 else echo ffmpeg err sleep 1m return -1 fi else echo $filename is not mkv fi } function dealwithDirs() { if [ -f $1 ]; then dealwithonefile $1 return $? fi for file in `ls $1` do if [ -d $1"/"$file ] ; then echo $1"/"$file is dir dealwithDirs $1"/"$file else dealwithonefile $1"/"$file #return $? fi done } if test -z $1 then pat=`pwd` dealwithDirs $pat else echo "$1 is not empty." dealwithDirs $1 fi
原帖由 zohu 于 2021-11-11 22:01 发表 CX当显示器用了,potplayer+madvr要比自带的差很多吗? 感觉是不是有一点太折腾了。尤其是对于PT下载,在NAS里放着的文件如果要保种的话,还得搞一下硬链接。
原帖由 夏多南纳特 于 2021-11-12 10:20 发表 posted by wap, platform: Samsung 楼主牛逼,小白问下,该如何运行?
原帖由 @fenny 于 2021-11-13 09:31 发表 经常内置字幕都出不来,能选择,但是没有任何字幕 同一个视频有时有有时没有,这个bug有解吗