run ffprobe${PROGSUF}-show_entriesformat=format_name -print_formatdefault=nw=1:nk=1 -v 0 "$@"
run ffprobe${PROGSUF}${EXECSUF}-show_entriesformat=format_name -print_formatdefault=nw=1:nk=1 -v 0 "$@"
}
probetags(){
run ffprobe${PROGSUF}-show_entries format_tags -v 0 "$@"
run ffprobe${PROGSUF}${EXECSUF}-show_entries format_tags -v 0 "$@"
}
runlocal(){
...
...
@@ -99,24 +99,24 @@ runlocal(){
}
probeframes(){
run ffprobe${PROGSUF}-show_frames-v 0 "$@"
run ffprobe${PROGSUF}${EXECSUF}-show_frames-v 0 "$@"
}
probechapters(){
run ffprobe${PROGSUF}-show_chapters-v 0 "$@"
run ffprobe${PROGSUF}${EXECSUF}-show_chapters-v 0 "$@"
}
probegaplessinfo(){
filename="$1"
shift
run ffprobe${PROGSUF}-bitexact-select_streams a -show_entriesformat=start_time,duration:stream=index,start_pts,duration_ts -v 0 "$filename""$@"
run ffprobe${PROGSUF}${EXECSUF}-bitexact-select_streams a -show_entriesformat=start_time,duration:stream=index,start_pts,duration_ts -v 0 "$filename""$@"
pktfile1="${outdir}/${test}.pkts"
framefile1="${outdir}/${test}.frames"
cleanfiles="$cleanfiles$pktfile1$framefile1"
run ffprobe${PROGSUF}-bitexact-select_streams a -of compact -count_packets-show_entriespacket=pts,dts,duration,flags:stream=nb_read_packets -v 0 "$filename""$@">"$pktfile1"
run ffprobe${PROGSUF}${EXECSUF}-bitexact-select_streams a -of compact -count_packets-show_entriespacket=pts,dts,duration,flags:stream=nb_read_packets -v 0 "$filename""$@">"$pktfile1"
head-n 8 "$pktfile1"
tail-n 9 "$pktfile1"
run ffprobe${PROGSUF}-bitexact-select_streams a -of compact -count_frames-show_entriesframe=pkt_pts,pkt_dts,best_effort_timestamp,pkt_duration,nb_samples:stream=nb_read_frames -v 0 "$filename""$@">"$framefile1"
run ffprobe${PROGSUF}${EXECSUF}-bitexact-select_streams a -of compact -count_frames-show_entriesframe=pkt_pts,pkt_dts,best_effort_timestamp,pkt_duration,nb_samples:stream=nb_read_frames -v 0 "$filename""$@">"$framefile1"