Created
January 4, 2018 08:53
-
-
Save WoZ/7067d8f6b82a3ed31960af18a8d6819d to your computer and use it in GitHub Desktop.
Gnuplot script for ffprobe analysis
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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