Skip to content

Instantly share code, notes, and snippets.

@WoZ
Created January 4, 2018 08:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WoZ/7067d8f6b82a3ed31960af18a8d6819d to your computer and use it in GitHub Desktop.
Save WoZ/7067d8f6b82a3ed31960af18a8d6819d to your computer and use it in GitHub Desktop.
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