├── .gitignore ├── LICENSE ├── README.md ├── img ├── ex1_plot.png └── ex1_table.png ├── main.js ├── package.json └── testdata ├── file.265 └── traces.log /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/README.md -------------------------------------------------------------------------------- /img/ex1_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/img/ex1_plot.png -------------------------------------------------------------------------------- /img/ex1_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/img/ex1_table.png -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/package.json -------------------------------------------------------------------------------- /testdata/file.265: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/testdata/file.265 -------------------------------------------------------------------------------- /testdata/traces.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/podborski/GStreamerLatencyPlotter/HEAD/testdata/traces.log --------------------------------------------------------------------------------