Skip to content

Instantly share code, notes, and snippets.

@WoZ
Created January 4, 2018 08:53
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
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