Skip to content

Commit

Permalink
Update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
ihabunek committed Jan 9, 2025
1 parent b74b179 commit 363a32d
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ twitch-dl changelog

<!-- Do not edit. This file is automatically generated from changelog.yaml.-->

### [2.10.0 (2025-01-09)](https://github.com/ihabunek/twitch-dl/releases/tag/2.10.0)

* Add chat --image-format option to specify intermediate frame format
* Add chat --keep option to keep the generated frames
* Add chat --no-join option to skip video generation

### [2.9.4 (2025-01-06)](https://github.com/ihabunek/twitch-dl/releases/tag/2.9.4)

* Fix bug with cache directory creation (#171)
Expand Down
7 changes: 7 additions & 0 deletions changelog.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2.10.0:
date: 2025-01-09
changes:
- "Add chat --image-format option to specify intermediate frame format"
- "Add chat --keep option to keep the generated frames"
- "Add chat --no-join option to skip video generation"

2.9.4:
date: 2025-01-06
changes:
Expand Down
6 changes: 6 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ twitch-dl changelog

<!-- Do not edit. This file is automatically generated from changelog.yaml.-->

### [2.10.0 (2025-01-09)](https://github.com/ihabunek/twitch-dl/releases/tag/2.10.0)

* Add chat --image-format option to specify intermediate frame format
* Add chat --keep option to keep the generated frames
* Add chat --no-join option to skip video generation

### [2.9.4 (2025-01-06)](https://github.com/ihabunek/twitch-dl/releases/tag/2.9.4)

* Fix bug with cache directory creation (#171)
Expand Down
15 changes: 15 additions & 0 deletions docs/commands/chat.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,26 @@ twitch-dl chat [OPTIONS] ID
<td>Video format to convert into, passed to ffmpeg as the target file extension. [default: <code>mp4</code>]</td>
</tr>

<tr>
<td class="code">-i, --image-format TEXT</td>
<td>Image format used to render individual frames, bmp (default) is fast but consumes a lot of space. You can switch to png to conserve space at cost of speed. [default: <code>bmp</code>]</td>
</tr>

<tr>
<td class="code">--overwrite</td>
<td>Overwrite the target file if it already exists without prompting.</td>
</tr>

<tr>
<td class="code">-k, --keep</td>
<td>Don&#x27;t delete the generated intermediate frame images.</td>
</tr>

<tr>
<td class="code">--no-join</td>
<td>Don&#x27;t run ffmpeg to join the generated frames, implies --keep.</td>
</tr>

<tr>
<td class="code">--json</td>
<td>Print data as JSON rather than human readable text</td>
Expand Down

0 comments on commit 363a32d

Please sign in to comment.