Gnuplot script for ffprobe analysis
reset | |
set ylabel "Frames in period" | |
set xlabel "Time" | |
set xdata time | |
set timefmt "%s" | |
set format x "%H:%M:%S" | |
set grid | |
set style line 1 lc rgb '#388e3c' lt 1 lw 1 pt 5 ps 0.5 | |
set style line 2 lc rgb '#6a1b9a' lt 1 lw 1 pt 5 ps 0.5 | |
plot 'dts_and_realtime.dat' using 1:2 title "Real time" w linespoints ls 1, '' using 1:3 title "DTS" w linespoints ls 2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment