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
#!/usr/bin/env bash | |
# | |
# Convert GoPro Hero7/Hero8 videos AAC to PCM which can be read with DaVinci Resolve Studio 16 in Linux | |
# Also keeps GoPro's metadata | |
# | |
# Required dependency: ffmpeg 4.1 | |
# To do: per-stream error handling, actually use datastream count and more efficient parsing of ffprobe | |
# | |
# Free for the taking. | |
# |
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
#!/usr/bin/env bash | |
# | |
# Convert GoPro Hero7/Hero8 videos (mainly HEVC) to DNxHD and AAC to PCM which can be read with DaVinci Resolve 16 in Linux | |
# Also keeps GoPro's metadata | |
# | |
# Required dependency: ffmpeg 4.1 | |
# To do: per-stream error handling, actually use datastream count and more efficient parsing of ffprobe | |
# | |
# Free for the taking. | |
# |
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
// Example C++17 gpsd program using libgpsmm | |
// Has no actual purpose other than output some of libgpsmm struct variables of your choosing. | |
// reference declarations: https://fossies.org/dox/gpsd-3.22/index.html | |
// | |
// compiles without warning as follows: | |
// g++ -std=c++17 -Wall -pedantic -pthread $(pkg-config --cflags --libs libgps) gpsd-example.cpp -o gpsd-example | |
// clang++ -std=c++17 -Wall -pedantic -pthread $(pkg-config --cflags --libs libgps) gpsd-example.cpp -o gpsd-example | |
// Free for the taking. | |
// Version 1.84 |