Skip to content

Commit

Permalink
[#195] Using spaces in title cause a ffmpeg error (#198)
Browse files Browse the repository at this point in the history
* [Fixed][Issue #195] Using spaces in title results in ffmpeg error.

* Dev Dependencies bumped

* jest.mocked instead of ts-jest/mocked due to jestjs/jest#12089
  • Loading branch information
boonya committed Jan 24, 2022
1 parent 3ebd72b commit 61e7e06
Show file tree
Hide file tree
Showing 17 changed files with 883 additions and 1,008 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project should be documented in this file.

## [2.0.3] - Bugfix & update

- [Issue #195](https://github.com/boonya/rtsp-video-recorder/issues/195) acknowledged, investigated and fixed
- Dev dependencies updated
- `jest.mocked` instead of `ts-jest/mocked` due to https://github.com/facebook/jest/pull/12089

## [2.0.2-beta.1] - Bugfix & update

- [Issue #170](https://github.com/boonya/rtsp-video-recorder/issues/170) acknowledged, investigated and fixed
Expand Down
2 changes: 2 additions & 0 deletions example.ts
Expand Up @@ -28,6 +28,7 @@ try {
NO_AUDIO,
DESTINATION,
SHOW_PROGRESS,
PLAYLIST_NAME,
} = process.env;

if (!DESTINATION || (!SOURCE && !IP) || (SOURCE && IP)) {
Expand All @@ -48,6 +49,7 @@ try {
title,
segmentTime,
filePattern,
playlistName: PLAYLIST_NAME,
dirSizeThreshold,
noAudio,
},
Expand Down

0 comments on commit 61e7e06

Please sign in to comment.