gpx-from-gopro 0.2.0 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -16,10 +16,15 @@ npm install gpx-from-gopro
16
16
 
17
17
  ## CLI
18
18
 
19
+ No install needed:
20
+
19
21
  ```sh
20
- gpx-from-gopro <dir|file.mp4> [...] [--out DIR] [--tz HOURS] [--rate HZ] [--cache-dir DIR | --no-cache]
22
+ npx gpx-from-gopro <dir|file.mp4> [...] [--out DIR] [--tz HOURS] [--rate HZ] [--cache-dir DIR | --no-cache]
21
23
  ```
22
24
 
25
+ Once installed (`npm install [-g] gpx-from-gopro`), drop the `npx` prefix and just run
26
+ `gpx-from-gopro ...`.
27
+
23
28
  Recurses directories for video files, groups by camera body (serial, falling back to filename
24
29
  family) + local date, and writes one merged `<YYYYMMDD>-<family>.gpx` per group — within it, points
25
30
  split into one `<trkseg>` per recording session (keyed on the filename file-number, with a time-gap
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gpx-from-gopro",
3
- "version": "0.2.0",
3
+ "version": "0.3.0",
4
4
  "description": "Extract a GoPro video's GPS telemetry as GPX or render-agnostic TrackPoints (points + meta + timezone + UTC anchor).",
5
5
  "keywords": [
6
6
  "gopro",
@@ -32,7 +32,7 @@
32
32
  "directory": "packages/gopro"
33
33
  },
34
34
  "dependencies": {
35
- "gpx-stabilizer": "^0.2.0",
35
+ "gpx-stabilizer": "^0.3.0",
36
36
  "egm96-universal": "^1.1.1",
37
37
  "gopro-telemetry": "^1.2.11",
38
38
  "gpmf-extract": "^0.3.3",