You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [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
If a title is passed when creating a new recorder, the title cannot include a space.
title: "Test Camera"
will result in error:
Progress [NULL @ 0x13383b600] Unable to find a suitable output format for 'Camera'
My ffmpeg command is:
-rtsp_transport tcp -i rtsp://192.168.1.3:554/MediaInput/h264/stream_1 -reset_timestamps 1 -metadata title=Test Camera -c:a aac -strftime 1 -strftime_mkdir 1 -hls_time 600 -hls_list_size 0 -hls_segment_filename %Y.%m.%d/%H.%M.%S.mp4 ./$(date +%Y.%m.%d-%H.%M.%S).m3u8
Edit: I am on an Apple Silicon Mac with Node v12.18.3 and ffmpeg 4.4.1
The text was updated successfully, but these errors were encountered: