Skip to content

1.1.0

Latest
Compare
Choose a tag to compare
@t2t2 t2t2 released this 19 Jul 20:12
· 1 commit to main since this release
v1.1.0
a8d0deb
  • Added option to disable uploading
    "upload": false,
  • Added option to disable uploading raw source file
    "upload": {
      "options": {/* ... */},
      "private": {/* ... */},
      "public": {/* ... */},
      "uploadRaw": false,
    }
  • Added options to skip parts:
    • By adding skip between timestamps
      pod-knight --preset ./my-great-show.json5 ./stream-recording.mp4 MGS002 -s 01:00 02:00 skip 03:00 -e 04:00
      
      Part 1: 00:01:00.000 - 00:02:00.000 (duration: 00:01:00.000)  MGS002_pre
      Part 2: 00:03:00.000 - 00:04:00.000 (duration: 00:01:00.000)  MGS002
      
    • By making it part of the show preset:
      "parts": [
        {"suffix": "_episode"},
        false,
        {"suffix": "_bonus"},
      ],
      pod-knight --preset ./my-great-show.json5 ./stream-recording.mp4 MGS003 -s 01:00 02:00 03:00 -e 04:00
      
      Part 1: 00:01:00.000 - 00:02:00.000 (duration: 00:01:00.000)  MGS003_episode
      Part 2: 00:03:00.000 - 00:04:00.000 (duration: 00:01:00.000)  MGS003_bonus