homekit/rebroadcast: document weird h264 sps/pps issue and new filter

This commit is contained in:
Koushik Dutta
2022-03-05 17:09:19 -08:00
parent 95e5212f42
commit 71ebc37216
3 changed files with 5 additions and 4 deletions

View File

@@ -1,12 +1,12 @@
{
"name": "@scrypted/prebuffer-mixin",
"version": "0.1.182",
"version": "0.1.183",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@scrypted/prebuffer-mixin",
"version": "0.1.182",
"version": "0.1.183",
"license": "Apache-2.0",
"dependencies": {
"@scrypted/common": "file:../../common",

View File

@@ -1,6 +1,6 @@
{
"name": "@scrypted/prebuffer-mixin",
"version": "0.1.182",
"version": "0.1.183",
"description": "Rebroadcast and Prebuffer for VideoCameras.",
"author": "Scrypted",
"license": "Apache-2.0",

View File

@@ -483,7 +483,8 @@ class PrebufferSession {
// the HomeKit plugin was blasting RTP packets out from RTSP mode,
// but the bitstream had no SPS/PPS information, resulting in the video never loading
// in the Home app.
ffmpegInput.inputArguments.push('-bsf:v', 'dump_extra');
if (rtspMode)
ffmpegInput.inputArguments.push('-bsf:v', 'dump_extra');
session = await startParserSession(ffmpegInput, rbo);
}
}