* [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box @ 2022-02-21 15:06 Eran Kornblau 2022-02-21 18:16 ` Jan Ekström 0 siblings, 1 reply; 9+ messages in thread From: Eran Kornblau @ 2022-02-21 15:06 UTC (permalink / raw) To: FFmpeg development discussions and patches Hi all, We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. After some investigation, we found the cause was the addition of the 'btrt' atom to the mp4 – https://github.com/FFmpeg/FFmpeg/commit/3838e8fc210aa09a9f9058506c0ce80b6ad9b9c3 The TV decoder expects to get the sinf atom right after esds, and doesn't properly handle the btrt atom in between (our packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. Thank you! Eran _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box 2022-02-21 15:06 [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box Eran Kornblau @ 2022-02-21 18:16 ` Jan Ekström 2022-02-21 20:40 ` Eran Kornblau 0 siblings, 1 reply; 9+ messages in thread From: Jan Ekström @ 2022-02-21 18:16 UTC (permalink / raw) To: FFmpeg development discussions and patches On Mon, Feb 21, 2022 at 5:07 PM Eran Kornblau <eran.kornblau@kaltura.com> wrote: > > Hi all, > > We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. > Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. > > After some investigation, we found the cause was the addition of the 'btrt' atom to the mp4 – > https://github.com/FFmpeg/FFmpeg/commit/3838e8fc210aa09a9f9058506c0ce80b6ad9b9c3 > The TV decoder expects to get the sinf atom right after esds, and doesn't properly handle the btrt atom in between > (our packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). > > Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. > I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. > In case the use case was unknown, the primary reason for adding this was to utilize this box to inform a media server of an incoming live stream's bit rate, since the overall bit rate cannot be calculated for something that isn't done yet (https://dashif-documents.azurewebsites.net/Ingest/master/DASH-IF-Ingest.html as an example of one such use case). This being an alternative to nonstandard things such as ISML manifests. Additionally, since it seemed to be specified at the end of the given structures, I added it at the end of these given boxes. Apparently thus it made your live patching of that box no longer compatible with these parsers, since you just append your required things to the end of it. Am I understanding things correctly? Jan _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box 2022-02-21 18:16 ` Jan Ekström @ 2022-02-21 20:40 ` Eran Kornblau 2022-02-22 7:54 ` Marton Balint 0 siblings, 1 reply; 9+ messages in thread From: Eran Kornblau @ 2022-02-21 20:40 UTC (permalink / raw) To: FFmpeg development discussions and patches > > On Mon, Feb 21, 2022 at 5:07 PM Eran Kornblau <eran.kornblau@kaltura.com> wrote: > > > > Hi all, > > > > We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. > > Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. > > > > After some investigation, we found the cause was the addition of the > > 'btrt' atom to the mp4 – > > https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgith > > ub.com%2FFFmpeg%2FFFmpeg%2Fcommit%2F3838e8fc210aa09a9f9058506c0ce80b6a > > d9b9c3&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c5037 > > 48de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206022682%7CUnknown%7CTW > > FpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6 > > Mn0%3D%7C3000&sdata=Na7ZxDQTby8Xq9CjB51lJyP1IOMdwLqoRLNODUC4nX0%3D > > &reserved=0 The TV decoder expects to get the sinf atom right > > after esds, and doesn't properly handle the btrt atom in between (our > > packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). > > > > Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. > > I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. > > > > In case the use case was unknown, the primary reason for adding this was to utilize this box to inform a media server of an incoming live stream's bit rate, since the overall bit rate cannot be calculated for something that isn't done yet > (https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdashif-documents.azurewebsites.net%2FIngest%2Fmaster%2FDASH-IF-Ingest.html&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c503748de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206178898%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=auOsZ4L7jR35BZxi45Onk9UQWoio2xOzJ%2BqcdN7yASk%3D&reserved=0 > as an example of one such use case). This being an alternative to nonstandard things such as ISML manifests. > > Additionally, since it seemed to be specified at the end of the given structures, I added it at the end of these given boxes. Apparently thus it made your live patching of that box no longer compatible with these parsers, since you just append your required things to the end of it. Am I understanding things correctly? > Our code adds the sinf box after the existing stsd entry, it is correct also when btrt is present, as an evidence to this - playback works fine on all other devices. The problem, in my understanding, is in the decoder present on the affected Sony TV models - it seems the decoder is making an assumption that the sinf box should come right after the esds box, while AFAIK, the spec does not mandate any order. Verbatim response we got from Sony: "btrt box in the audio chunk is causing the TV decoder to fail. TV decoder is expecting sinf box after esds box.". So, even though it seems the TV decoder is the culprit, since the btrt atom can cause such failures, IMHO it should be omitted by default. Users who need the benefits this atom provides, will be able to enable this functionality, of course. Thanks Eran > Jan > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fffmpeg.org%2Fmailman%2Flistinfo%2Fffmpeg-devel&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c503748de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206178898%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=OBl349gLsGcHI%2FY%2FukRf%2BrulgovZ1t8%2BE511hsxcH%2FI%3D&reserved=0 > > To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". > _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box 2022-02-21 20:40 ` Eran Kornblau @ 2022-02-22 7:54 ` Marton Balint 2022-02-22 11:16 ` Jan Ekström 0 siblings, 1 reply; 9+ messages in thread From: Marton Balint @ 2022-02-22 7:54 UTC (permalink / raw) To: FFmpeg development discussions and patches On Mon, 21 Feb 2022, Eran Kornblau wrote: >> >> On Mon, Feb 21, 2022 at 5:07 PM Eran Kornblau <eran.kornblau@kaltura.com> wrote: >>> >>> Hi all, >>> >>> We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. >>> Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. >>> >>> After some investigation, we found the cause was the addition of the >>> 'btrt' atom to the mp4 – >>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgith >>> ub.com%2FFFmpeg%2FFFmpeg%2Fcommit%2F3838e8fc210aa09a9f9058506c0ce80b6a >>> d9b9c3&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c5037 >>> 48de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206022682%7CUnknown%7CTW >>> FpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6 >>> Mn0%3D%7C3000&sdata=Na7ZxDQTby8Xq9CjB51lJyP1IOMdwLqoRLNODUC4nX0%3D >>> &reserved=0 The TV decoder expects to get the sinf atom right >>> after esds, and doesn't properly handle the btrt atom in between (our >>> packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). >>> >>> Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. >>> I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. >>> >> >> In case the use case was unknown, the primary reason for adding this was to utilize this box to inform a media server of an incoming live stream's bit rate, since the overall bit rate cannot be calculated for something that isn't done yet >> (https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdashif-documents.azurewebsites.net%2FIngest%2Fmaster%2FDASH-IF-Ingest.html&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c503748de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206178898%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=auOsZ4L7jR35BZxi45Onk9UQWoio2xOzJ%2BqcdN7yASk%3D&reserved=0 >> as an example of one such use case). This being an alternative to nonstandard things such as ISML manifests. >> >> Additionally, since it seemed to be specified at the end of the given structures, I added it at the end of these given boxes. Apparently thus it made your live patching of that box no longer compatible with these parsers, since you just append your required things to the end of it. Am I understanding things correctly? >> > > Our code adds the sinf box after the existing stsd entry, it is correct also when btrt is present, as an evidence to this - playback works fine on all other devices. > The problem, in my understanding, is in the decoder present on the affected Sony TV models - it seems the decoder is making an assumption that the sinf box should come right after the esds box, > while AFAIK, the spec does not mandate any order. Verbatim response we got from Sony: "btrt box in the audio chunk is causing the TV decoder to fail. TV decoder is expecting sinf box after esds box.". > > So, even though it seems the TV decoder is the culprit, since the btrt atom can cause such failures, IMHO it should be omitted by default. > Users who need the benefits this atom provides, will be able to enable this functionality, of course. Ability to turn it off is OK, changing default to not write it does not seem right. Also you are poiting at btrt atom, but in fact sony said: "TV decoder expecting sinf box after sdds box", so the proper fix seems to be to change the order of the atoms, and add a big fat warning to the code that because of some sony TV models, sinf box must be immediately after esds box. Is this doable? Thanks, Marton > > Thanks > > Eran > >> Jan >> _______________________________________________ >> ffmpeg-devel mailing list >> ffmpeg-devel@ffmpeg.org >> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fffmpeg.org%2Fmailman%2Flistinfo%2Fffmpeg-devel&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c503748de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206178898%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=OBl349gLsGcHI%2FY%2FukRf%2BrulgovZ1t8%2BE511hsxcH%2FI%3D&reserved=0 >> >> To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". >> > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://ffmpeg.org/mailman/listinfo/ffmpeg-devel > > To unsubscribe, visit link above, or email > ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box 2022-02-22 7:54 ` Marton Balint @ 2022-02-22 11:16 ` Jan Ekström 2022-02-22 12:06 ` Eran Kornblau 0 siblings, 1 reply; 9+ messages in thread From: Jan Ekström @ 2022-02-22 11:16 UTC (permalink / raw) To: FFmpeg development discussions and patches On Tue, Feb 22, 2022 at 9:55 AM Marton Balint <cus@passwd.hu> wrote: > > > > On Mon, 21 Feb 2022, Eran Kornblau wrote: > > >> > >> On Mon, Feb 21, 2022 at 5:07 PM Eran Kornblau <eran.kornblau@kaltura.com> wrote: > >>> > >>> Hi all, > >>> > >>> We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. > >>> Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. > >>> > >>> After some investigation, we found the cause was the addition of the > >>> 'btrt' atom to the mp4 – > >>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgith > >>> ub.com%2FFFmpeg%2FFFmpeg%2Fcommit%2F3838e8fc210aa09a9f9058506c0ce80b6a > >>> d9b9c3&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c5037 > >>> 48de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206022682%7CUnknown%7CTW > >>> FpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6 > >>> Mn0%3D%7C3000&sdata=Na7ZxDQTby8Xq9CjB51lJyP1IOMdwLqoRLNODUC4nX0%3D > >>> &reserved=0 The TV decoder expects to get the sinf atom right > >>> after esds, and doesn't properly handle the btrt atom in between (our > >>> packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). > >>> > >>> Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. > >>> I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. > >>> > >> > >> In case the use case was unknown, the primary reason for adding this was to utilize this box to inform a media server of an incoming live stream's bit rate, since the overall bit rate cannot be calculated for something that isn't done yet > >> (https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdashif-documents.azurewebsites.net%2FIngest%2Fmaster%2FDASH-IF-Ingest.html&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c503748de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206178898%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=auOsZ4L7jR35BZxi45Onk9UQWoio2xOzJ%2BqcdN7yASk%3D&reserved=0 > >> as an example of one such use case). This being an alternative to nonstandard things such as ISML manifests. > >> > >> Additionally, since it seemed to be specified at the end of the given structures, I added it at the end of these given boxes. Apparently thus it made your live patching of that box no longer compatible with these parsers, since you just append your required things to the end of it. Am I understanding things correctly? > >> > > > > Our code adds the sinf box after the existing stsd entry, it is correct also when btrt is present, as an evidence to this - playback works fine on all other devices. > > The problem, in my understanding, is in the decoder present on the affected Sony TV models - it seems the decoder is making an assumption that the sinf box should come right after the esds box, > > while AFAIK, the spec does not mandate any order. Verbatim response we got from Sony: "btrt box in the audio chunk is causing the TV decoder to fail. TV decoder is expecting sinf box after esds box.". > > > > So, even though it seems the TV decoder is the culprit, since the btrt atom can cause such failures, IMHO it should be omitted by default. > > Users who need the benefits this atom provides, will be able to enable this functionality, of course. > > Ability to turn it off is OK, changing default to not write it does not > seem right. > > Also you are poiting at btrt atom, but in fact sony said: "TV decoder > expecting sinf box after sdds box", so the proper fix seems to be to > change the order of the atoms, and add a big fat warning to the code that > because of some sony TV models, sinf box must be immediately after esds > box. Is this doable? > My understanding (feel free to correct me if I understood it incorrectly) is that they are patching the written box structures afterwards, and that is now failing. So what libavformat itself is writing out in movenc actually works. Which is what the expected result should be, since I think this code has been in movenc since release 4.4, I think? I would have expected that if movenc's output was not working by itself that we would have issues spawning regarding that. Jan _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box 2022-02-22 11:16 ` Jan Ekström @ 2022-02-22 12:06 ` Eran Kornblau 2022-03-06 9:40 ` Eran Kornblau 0 siblings, 1 reply; 9+ messages in thread From: Eran Kornblau @ 2022-02-22 12:06 UTC (permalink / raw) To: FFmpeg development discussions and patches > > On Tue, Feb 22, 2022 at 9:55 AM Marton Balint <cus@passwd.hu> wrote: > > > > On Mon, 21 Feb 2022, Eran Kornblau wrote: > > > > >> On Mon, Feb 21, 2022 at 5:07 PM Eran Kornblau <eran.kornblau@kaltura.com> wrote: > > >>> > > >>> Hi all, > > >>> > > >>> We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. > > >>> Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. > > >>> > > >>> After some investigation, we found the cause was the addition of > > >>> the 'btrt' atom to the mp4 – > > >>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2F > > >>> gith > > >>> ub.com%2FFFmpeg%2FFFmpeg%2Fcommit%2F3838e8fc210aa09a9f9058506c0ce8 > > >>> 0b6a > > >>> d9b9c3&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C0c > > >>> 5037 > > >>> 48de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206022682%7CUnknown% > > >>> 7CTW > > >>> FpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJX > > >>> VCI6 > > >>> Mn0%3D%7C3000&sdata=Na7ZxDQTby8Xq9CjB51lJyP1IOMdwLqoRLNODUC4nX > > >>> 0%3D > > >>> &reserved=0 The TV decoder expects to get the sinf atom right > > >>> after esds, and doesn't properly handle the btrt atom in between > > >>> (our packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). > > >>> > > >>> Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. > > >>> I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. > > >>> > > >> > > >> In case the use case was unknown, the primary reason for adding > > >> this was to utilize this box to inform a media server of an > > >> incoming live stream's bit rate, since the overall bit rate cannot > > >> be calculated for something that isn't done yet > > >> (https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2F > > >> dashif-documents.azurewebsites.net%2FIngest%2Fmaster%2FDASH-IF-Inge > > >> st.html&data=04%7C01%7C%7Cd324fb1cfab4426c652908d9f5f4e1f1%7C0c > > >> 503748de3f4e2597e26819d53a42b6%7C1%7C1%7C637811254375585151%7CUnkno > > >> wn%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haW > > >> wiLCJXVCI6Mn0%3D%7C3000&sdata=75Ua9DE4HzBSOXD6eWQ%2B422ss3YYa7m > > >> 94impyQd7%2Bkg%3D&reserved=0 as an example of one such use > > >> case). This being an alternative to nonstandard things such as ISML manifests. > > >> > > >> Additionally, since it seemed to be specified at the end of the given structures, I added it at the end of these given boxes. Apparently thus it made your live patching of that box no longer compatible with these parsers, since you just append your required things to the end of it. Am I understanding things correctly? > > >> > > > > > > Our code adds the sinf box after the existing stsd entry, it is correct also when btrt is present, as an evidence to this - playback works fine on all other devices. > > > The problem, in my understanding, is in the decoder present on the > > > affected Sony TV models - it seems the decoder is making an assumption that the sinf box should come right after the esds box, while AFAIK, the spec does not mandate any order. Verbatim response we got from Sony: "btrt box in the audio chunk is causing the TV decoder to fail. TV decoder is expecting sinf box after esds box.". > > > > > > So, even though it seems the TV decoder is the culprit, since the btrt atom can cause such failures, IMHO it should be omitted by default. > > > Users who need the benefits this atom provides, will be able to enable this functionality, of course. > > > > Ability to turn it off is OK, changing default to not write it does > > not seem right. > > > > Also you are poiting at btrt atom, but in fact sony said: "TV decoder > > expecting sinf box after sdds box", so the proper fix seems to be to > > change the order of the atoms, and add a big fat warning to the code > > that because of some sony TV models, sinf box must be immediately > > after esds box. Is this doable? > > > > My understanding (feel free to correct me if I understood it > incorrectly) is that they are patching the written box structures afterwards, and that is now failing. So what libavformat itself is writing out in movenc actually works. > > Which is what the expected result should be, since I think this code has been in movenc since release 4.4, I think? I would have expected that if movenc's output was not working by itself that we would have issues spawning regarding that. > Correct, the DRM encryption is applied by our packager (https://github.com/kaltura/nginx-vod-module), not by ffmpeg, and it adds `sinf` after all existing atoms in the `stsd` entry. According to the code in movenc, had the encryption been done by ffmpeg, the sinf atom would have been written before `btrt`, I guess that should have worked (I didn't try...). Changing our code to insert the `sinf` right after `esds` is of course possible too, just a bit annoying, because we currently treat the original `stsd` entry as opaque, and just append to it. From our perspective, it was working for years, and the addition of `btrt` broke it, that is the main reason I suggested to change the default... But anyway, I understand you want to keep it on by default, so will submit a patch to only add the ability to disable it. Thanks, Eran > Jan > _______________________________________________ > ffmpeg-devel mailing list > ffmpeg-devel@ffmpeg.org > https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fffmpeg.org%2Fmailman%2Flistinfo%2Fffmpeg-devel&data=04%7C01%7C%7Cd324fb1cfab4426c652908d9f5f4e1f1%7C0c503748de3f4e2597e26819d53a42b6%7C1%7C1%7C637811254375585151%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=XA1%2FPD2AM98XB%2FYfg82u58Op5CTQT0hJIonF%2BgK8qlE%3D&reserved=0 > > To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". > _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box 2022-02-22 12:06 ` Eran Kornblau @ 2022-03-06 9:40 ` Eran Kornblau 2022-03-21 9:10 ` Eran Kornblau 0 siblings, 1 reply; 9+ messages in thread From: Eran Kornblau @ 2022-03-06 9:40 UTC (permalink / raw) To: FFmpeg development discussions and patches [-- Attachment #1: Type: text/plain, Size: 6897 bytes --] > > > > On Tue, Feb 22, 2022 at 9:55 AM Marton Balint <cus@passwd.hu> wrote: > > > > > > On Mon, 21 Feb 2022, Eran Kornblau wrote: > > > > > > >> On Mon, Feb 21, 2022 at 5:07 PM Eran Kornblau <eran.kornblau@kaltura.com> wrote: > > > >>> > > > >>> Hi all, > > > >>> > > > >>> We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. > > > >>> Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. > > > >>> > > > >>> After some investigation, we found the cause was the addition of > > > >>> the 'btrt' atom to the mp4 – > > > >>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F% > > > >>> 2F > > > >>> gith > > > >>> ub.com%2FFFmpeg%2FFFmpeg%2Fcommit%2F3838e8fc210aa09a9f9058506c0c > > > >>> e8 > > > >>> 0b6a > > > >>> d9b9c3&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925%7C > > > >>> 0c > > > >>> 5037 > > > >>> 48de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206022682%7CUnknow > > > >>> n% > > > >>> 7CTW > > > >>> FpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLC > > > >>> JX > > > >>> VCI6 > > > >>> Mn0%3D%7C3000&sdata=Na7ZxDQTby8Xq9CjB51lJyP1IOMdwLqoRLNODUC4 > > > >>> nX > > > >>> 0%3D > > > >>> &reserved=0 The TV decoder expects to get the sinf atom > > > >>> right after esds, and doesn't properly handle the btrt atom in > > > >>> between (our packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). > > > >>> > > > >>> Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. > > > >>> I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. > > > >>> > > > >> > > > >> In case the use case was unknown, the primary reason for adding > > > >> this was to utilize this box to inform a media server of an > > > >> incoming live stream's bit rate, since the overall bit rate > > > >> cannot be calculated for something that isn't done yet > > > >> (https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F% > > > >> 2F > > > >> dashif-documents.azurewebsites.net%2FIngest%2Fmaster%2FDASH-IF-In > > > >> ge > > > >> st.html&data=04%7C01%7C%7Cd324fb1cfab4426c652908d9f5f4e1f1%7C > > > >> 0c > > > >> 503748de3f4e2597e26819d53a42b6%7C1%7C1%7C637811254375585151%7CUnk > > > >> no > > > >> wn%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1h > > > >> aW > > > >> wiLCJXVCI6Mn0%3D%7C3000&sdata=75Ua9DE4HzBSOXD6eWQ%2B422ss3YYa > > > >> 7m > > > >> 94impyQd7%2Bkg%3D&reserved=0 as an example of one such use > > > >> case). This being an alternative to nonstandard things such as ISML manifests. > > > >> > > > >> Additionally, since it seemed to be specified at the end of the given structures, I added it at the end of these given boxes. Apparently thus it made your live patching of that box no longer compatible with these parsers, since you just append your required things to the end of it. Am I understanding things correctly? > > > >> > > > > > > > > Our code adds the sinf box after the existing stsd entry, it is correct also when btrt is present, as an evidence to this - playback works fine on all other devices. > > > > The problem, in my understanding, is in the decoder present on the > > > > affected Sony TV models - it seems the decoder is making an assumption that the sinf box should come right after the esds box, while AFAIK, the spec does not mandate any order. Verbatim response we got from Sony: "btrt box in the audio chunk is causing the TV decoder to fail. TV decoder is expecting sinf box after esds box.". > > > > > > > > So, even though it seems the TV decoder is the culprit, since the btrt atom can cause such failures, IMHO it should be omitted by default. > > > > Users who need the benefits this atom provides, will be able to enable this functionality, of course. > > > > > > Ability to turn it off is OK, changing default to not write it does > > > not seem right. > > > > > > Also you are poiting at btrt atom, but in fact sony said: "TV > > > decoder expecting sinf box after sdds box", so the proper fix seems > > > to be to change the order of the atoms, and add a big fat warning to > > > the code that because of some sony TV models, sinf box must be > > > immediately after esds box. Is this doable? > > > > > > > My understanding (feel free to correct me if I understood it > > incorrectly) is that they are patching the written box structures afterwards, and that is now failing. So what libavformat itself is writing out in movenc actually works. > > > > Which is what the expected result should be, since I think this code has been in movenc since release 4.4, I think? I would have expected that if movenc's output was not working by itself that we would have issues spawning regarding that. > > > > Correct, the DRM encryption is applied by our packager (https://github.com/kaltura/nginx-vod-module), not by ffmpeg, and it adds `sinf` after all existing atoms in the `stsd` entry. > According to the code in movenc, had the encryption been done by ffmpeg, the sinf atom would have been written before `btrt`, I guess that should have worked (I didn't try...). > Changing our code to insert the `sinf` right after `esds` is of course possible too, just a bit annoying, because we currently treat the original `stsd` entry as opaque, and just append to it. > > From our perspective, it was working for years, and the addition of `btrt` broke it, that is the main reason I suggested to change the default... > But anyway, I understand you want to keep it on by default, so will submit a patch to only add the ability to disable it. > Following some delay... attaching the patch. I copied the implementation of `write_tmcd` - the new flag supports forcing btrt (for mode != mp4), as well as disabling it. Thank you! Eran > Thanks, > > Eran > > > Jan > > _______________________________________________ > > ffmpeg-devel mailing list > > ffmpeg-devel@ffmpeg.org > > https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fffmp > > eg.org%2Fmailman%2Flistinfo%2Fffmpeg-devel&data=04%7C01%7C%7Cd324f > > b1cfab4426c652908d9f5f4e1f1%7C0c503748de3f4e2597e26819d53a42b6%7C1%7C1 > > %7C637811254375585151%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQ > > IjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=XA1%2FPD2A > > M98XB%2FYfg82u58Op5CTQT0hJIonF%2BgK8qlE%3D&reserved=0 > > > > To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". > > > [-- Attachment #2: 0001-movenc-add-write_btrt-option.patch --] [-- Type: application/octet-stream, Size: 4913 bytes --] [-- Attachment #3: Type: text/plain, Size: 251 bytes --] _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box 2022-03-06 9:40 ` Eran Kornblau @ 2022-03-21 9:10 ` Eran Kornblau 2022-03-28 5:39 ` Eran Kornblau 0 siblings, 1 reply; 9+ messages in thread From: Eran Kornblau @ 2022-03-21 9:10 UTC (permalink / raw) To: FFmpeg development discussions and patches [-- Attachment #1: Type: text/plain, Size: 7317 bytes --] Ping... thanks! -----Original Message----- From: Eran Kornblau Sent: Sunday, 6 March 2022 11:41 To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: RE: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box > > > > On Tue, Feb 22, 2022 at 9:55 AM Marton Balint <cus@passwd.hu> wrote: > > > > > > On Mon, 21 Feb 2022, Eran Kornblau wrote: > > > > > > >> On Mon, Feb 21, 2022 at 5:07 PM Eran Kornblau <eran.kornblau@kaltura.com> wrote: > > > >>> > > > >>> Hi all, > > > >>> > > > >>> We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. > > > >>> Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. > > > >>> > > > >>> After some investigation, we found the cause was the addition > > > >>> of the 'btrt' atom to the mp4 – > > > >>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2 > > > >>> F% > > > >>> 2F > > > >>> gith > > > >>> ub.com%2FFFmpeg%2FFFmpeg%2Fcommit%2F3838e8fc210aa09a9f9058506c > > > >>> 0c > > > >>> e8 > > > >>> 0b6a > > > >>> d9b9c3&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925% > > > >>> 7C > > > >>> 0c > > > >>> 5037 > > > >>> 48de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206022682%7CUnkn > > > >>> ow > > > >>> n% > > > >>> 7CTW > > > >>> FpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwi > > > >>> LC > > > >>> JX > > > >>> VCI6 > > > >>> Mn0%3D%7C3000&sdata=Na7ZxDQTby8Xq9CjB51lJyP1IOMdwLqoRLNODU > > > >>> C4 > > > >>> nX > > > >>> 0%3D > > > >>> &reserved=0 The TV decoder expects to get the sinf atom > > > >>> right after esds, and doesn't properly handle the btrt atom in > > > >>> between (our packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). > > > >>> > > > >>> Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. > > > >>> I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. > > > >>> > > > >> > > > >> In case the use case was unknown, the primary reason for adding > > > >> this was to utilize this box to inform a media server of an > > > >> incoming live stream's bit rate, since the overall bit rate > > > >> cannot be calculated for something that isn't done yet > > > >> (https://eur02.safelinks.protection.outlook.com/?url=https%3A%2 > > > >> F% > > > >> 2F > > > >> dashif-documents.azurewebsites.net%2FIngest%2Fmaster%2FDASH-IF- > > > >> In > > > >> ge > > > >> st.html&data=04%7C01%7C%7Cd324fb1cfab4426c652908d9f5f4e1f1% > > > >> 7C > > > >> 0c > > > >> 503748de3f4e2597e26819d53a42b6%7C1%7C1%7C637811254375585151%7CU > > > >> nk > > > >> no > > > >> wn%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik > > > >> 1h > > > >> aW > > > >> wiLCJXVCI6Mn0%3D%7C3000&sdata=75Ua9DE4HzBSOXD6eWQ%2B422ss3Y > > > >> Ya > > > >> 7m > > > >> 94impyQd7%2Bkg%3D&reserved=0 as an example of one such use > > > >> case). This being an alternative to nonstandard things such as ISML manifests. > > > >> > > > >> Additionally, since it seemed to be specified at the end of the given structures, I added it at the end of these given boxes. Apparently thus it made your live patching of that box no longer compatible with these parsers, since you just append your required things to the end of it. Am I understanding things correctly? > > > >> > > > > > > > > Our code adds the sinf box after the existing stsd entry, it is correct also when btrt is present, as an evidence to this - playback works fine on all other devices. > > > > The problem, in my understanding, is in the decoder present on > > > > the affected Sony TV models - it seems the decoder is making an assumption that the sinf box should come right after the esds box, while AFAIK, the spec does not mandate any order. Verbatim response we got from Sony: "btrt box in the audio chunk is causing the TV decoder to fail. TV decoder is expecting sinf box after esds box.". > > > > > > > > So, even though it seems the TV decoder is the culprit, since the btrt atom can cause such failures, IMHO it should be omitted by default. > > > > Users who need the benefits this atom provides, will be able to enable this functionality, of course. > > > > > > Ability to turn it off is OK, changing default to not write it > > > does not seem right. > > > > > > Also you are poiting at btrt atom, but in fact sony said: "TV > > > decoder expecting sinf box after sdds box", so the proper fix > > > seems to be to change the order of the atoms, and add a big fat > > > warning to the code that because of some sony TV models, sinf box > > > must be immediately after esds box. Is this doable? > > > > > > > My understanding (feel free to correct me if I understood it > > incorrectly) is that they are patching the written box structures afterwards, and that is now failing. So what libavformat itself is writing out in movenc actually works. > > > > Which is what the expected result should be, since I think this code has been in movenc since release 4.4, I think? I would have expected that if movenc's output was not working by itself that we would have issues spawning regarding that. > > > > Correct, the DRM encryption is applied by our packager (https://github.com/kaltura/nginx-vod-module), not by ffmpeg, and it adds `sinf` after all existing atoms in the `stsd` entry. > According to the code in movenc, had the encryption been done by ffmpeg, the sinf atom would have been written before `btrt`, I guess that should have worked (I didn't try...). > Changing our code to insert the `sinf` right after `esds` is of course possible too, just a bit annoying, because we currently treat the original `stsd` entry as opaque, and just append to it. > > From our perspective, it was working for years, and the addition of `btrt` broke it, that is the main reason I suggested to change the default... > But anyway, I understand you want to keep it on by default, so will submit a patch to only add the ability to disable it. > Following some delay... attaching the patch. I copied the implementation of `write_tmcd` - the new flag supports forcing btrt (for mode != mp4), as well as disabling it. Thank you! Eran > Thanks, > > Eran > > > Jan > > _______________________________________________ > > ffmpeg-devel mailing list > > ffmpeg-devel@ffmpeg.org > > https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fff > > mp > > eg.org%2Fmailman%2Flistinfo%2Fffmpeg-devel&data=04%7C01%7C%7Cd32 > > 4f > > b1cfab4426c652908d9f5f4e1f1%7C0c503748de3f4e2597e26819d53a42b6%7C1%7 > > C1 > > %7C637811254375585151%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLC > > JQ > > IjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=XA1%2FPD > > 2A > > M98XB%2FYfg82u58Op5CTQT0hJIonF%2BgK8qlE%3D&reserved=0 > > > > To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". > > > [-- Attachment #2: 0001-movenc-add-write_btrt-option.patch --] [-- Type: application/octet-stream, Size: 4913 bytes --] [-- Attachment #3: Type: text/plain, Size: 251 bytes --] _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box 2022-03-21 9:10 ` Eran Kornblau @ 2022-03-28 5:39 ` Eran Kornblau 0 siblings, 0 replies; 9+ messages in thread From: Eran Kornblau @ 2022-03-28 5:39 UTC (permalink / raw) To: FFmpeg development discussions and patches [-- Attachment #1: Type: text/plain, Size: 7566 bytes --] Another ping... -----Original Message----- From: Eran Kornblau Sent: Monday, 21 March 2022 11:10 To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: RE: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box Ping... thanks! -----Original Message----- From: Eran Kornblau Sent: Sunday, 6 March 2022 11:41 To: FFmpeg development discussions and patches <ffmpeg-devel@ffmpeg.org> Subject: RE: [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box > > > > On Tue, Feb 22, 2022 at 9:55 AM Marton Balint <cus@passwd.hu> wrote: > > > > > > On Mon, 21 Feb 2022, Eran Kornblau wrote: > > > > > > >> On Mon, Feb 21, 2022 at 5:07 PM Eran Kornblau <eran.kornblau@kaltura.com> wrote: > > > >>> > > > >>> Hi all, > > > >>> > > > >>> We've recently upgraded our ffmpeg version, and we got a playback issue on some Sony TV models that are playing HBBTV/DASH+DRM - video plays fine, audio doesn't play at all. > > > >>> Listing here some of the affected models (not pasting all, the list is long...) - KDL-32W600D, KDL-40W650D, KDL-48W650D, KDL-43W750D, KDL-49W750D, KDL-55W650D. > > > >>> > > > >>> After some investigation, we found the cause was the addition > > > >>> of the 'btrt' atom to the mp4 – > > > >>> https://eur02.safelinks.protection.outlook.com/?url=https%3A%2 > > > >>> F% > > > >>> 2F > > > >>> gith > > > >>> ub.com%2FFFmpeg%2FFFmpeg%2Fcommit%2F3838e8fc210aa09a9f9058506c > > > >>> 0c > > > >>> e8 > > > >>> 0b6a > > > >>> d9b9c3&data=04%7C01%7C%7Cc96aade7b4354115844508d9f5665925% > > > >>> 7C > > > >>> 0c > > > >>> 5037 > > > >>> 48de3f4e2597e26819d53a42b6%7C1%7C0%7C637810642206022682%7CUnkn > > > >>> ow > > > >>> n% > > > >>> 7CTW > > > >>> FpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwi > > > >>> LC > > > >>> JX > > > >>> VCI6 > > > >>> Mn0%3D%7C3000&sdata=Na7ZxDQTby8Xq9CjB51lJyP1IOMdwLqoRLNODU > > > >>> C4 > > > >>> nX > > > >>> 0%3D > > > >>> &reserved=0 The TV decoder expects to get the sinf atom > > > >>> right after esds, and doesn't properly handle the btrt atom in > > > >>> between (our packager adds the sinf atom at the end of the original stsd entry that was read from the mp4 file). > > > >>> > > > >>> Since, in my understanding, the btrt atom was added mostly for reporting reasons, IMHO, it should be a config option - off by default. > > > >>> I would happily submit a patch for it, but sending this first, in case there are any concerns/objections. > > > >>> > > > >> > > > >> In case the use case was unknown, the primary reason for adding > > > >> this was to utilize this box to inform a media server of an > > > >> incoming live stream's bit rate, since the overall bit rate > > > >> cannot be calculated for something that isn't done yet > > > >> (https://eur02.safelinks.protection.outlook.com/?url=https%3A%2 > > > >> F% > > > >> 2F > > > >> dashif-documents.azurewebsites.net%2FIngest%2Fmaster%2FDASH-IF- > > > >> In > > > >> ge > > > >> st.html&data=04%7C01%7C%7Cd324fb1cfab4426c652908d9f5f4e1f1% > > > >> 7C > > > >> 0c > > > >> 503748de3f4e2597e26819d53a42b6%7C1%7C1%7C637811254375585151%7CU > > > >> nk > > > >> no > > > >> wn%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik > > > >> 1h > > > >> aW > > > >> wiLCJXVCI6Mn0%3D%7C3000&sdata=75Ua9DE4HzBSOXD6eWQ%2B422ss3Y > > > >> Ya > > > >> 7m > > > >> 94impyQd7%2Bkg%3D&reserved=0 as an example of one such use > > > >> case). This being an alternative to nonstandard things such as ISML manifests. > > > >> > > > >> Additionally, since it seemed to be specified at the end of the given structures, I added it at the end of these given boxes. Apparently thus it made your live patching of that box no longer compatible with these parsers, since you just append your required things to the end of it. Am I understanding things correctly? > > > >> > > > > > > > > Our code adds the sinf box after the existing stsd entry, it is correct also when btrt is present, as an evidence to this - playback works fine on all other devices. > > > > The problem, in my understanding, is in the decoder present on > > > > the affected Sony TV models - it seems the decoder is making an assumption that the sinf box should come right after the esds box, while AFAIK, the spec does not mandate any order. Verbatim response we got from Sony: "btrt box in the audio chunk is causing the TV decoder to fail. TV decoder is expecting sinf box after esds box.". > > > > > > > > So, even though it seems the TV decoder is the culprit, since the btrt atom can cause such failures, IMHO it should be omitted by default. > > > > Users who need the benefits this atom provides, will be able to enable this functionality, of course. > > > > > > Ability to turn it off is OK, changing default to not write it > > > does not seem right. > > > > > > Also you are poiting at btrt atom, but in fact sony said: "TV > > > decoder expecting sinf box after sdds box", so the proper fix > > > seems to be to change the order of the atoms, and add a big fat > > > warning to the code that because of some sony TV models, sinf box > > > must be immediately after esds box. Is this doable? > > > > > > > My understanding (feel free to correct me if I understood it > > incorrectly) is that they are patching the written box structures afterwards, and that is now failing. So what libavformat itself is writing out in movenc actually works. > > > > Which is what the expected result should be, since I think this code has been in movenc since release 4.4, I think? I would have expected that if movenc's output was not working by itself that we would have issues spawning regarding that. > > > > Correct, the DRM encryption is applied by our packager (https://github.com/kaltura/nginx-vod-module), not by ffmpeg, and it adds `sinf` after all existing atoms in the `stsd` entry. > According to the code in movenc, had the encryption been done by ffmpeg, the sinf atom would have been written before `btrt`, I guess that should have worked (I didn't try...). > Changing our code to insert the `sinf` right after `esds` is of course possible too, just a bit annoying, because we currently treat the original `stsd` entry as opaque, and just append to it. > > From our perspective, it was working for years, and the addition of `btrt` broke it, that is the main reason I suggested to change the default... > But anyway, I understand you want to keep it on by default, so will submit a patch to only add the ability to disable it. > Following some delay... attaching the patch. I copied the implementation of `write_tmcd` - the new flag supports forcing btrt (for mode != mp4), as well as disabling it. Thank you! Eran > Thanks, > > Eran > > > Jan > > _______________________________________________ > > ffmpeg-devel mailing list > > ffmpeg-devel@ffmpeg.org > > https://eur02.safelinks.protection.outlook.com/?url=https%3A%2F%2Fff > > mp > > eg.org%2Fmailman%2Flistinfo%2Fffmpeg-devel&data=04%7C01%7C%7Cd32 > > 4f > > b1cfab4426c652908d9f5f4e1f1%7C0c503748de3f4e2597e26819d53a42b6%7C1%7 > > C1 > > %7C637811254375585151%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLC > > JQ > > IjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C3000&sdata=XA1%2FPD > > 2A > > M98XB%2FYfg82u58Op5CTQT0hJIonF%2BgK8qlE%3D&reserved=0 > > > > To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". > > > [-- Attachment #2: 0001-movenc-add-write_btrt-option.patch --] [-- Type: application/octet-stream, Size: 4913 bytes --] [-- Attachment #3: Type: text/plain, Size: 251 bytes --] _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-request@ffmpeg.org with subject "unsubscribe". ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2022-03-28 5:39 UTC | newest] Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2022-02-21 15:06 [FFmpeg-devel] Playback issue on Sony TVs caused by btrt box Eran Kornblau 2022-02-21 18:16 ` Jan Ekström 2022-02-21 20:40 ` Eran Kornblau 2022-02-22 7:54 ` Marton Balint 2022-02-22 11:16 ` Jan Ekström 2022-02-22 12:06 ` Eran Kornblau 2022-03-06 9:40 ` Eran Kornblau 2022-03-21 9:10 ` Eran Kornblau 2022-03-28 5:39 ` Eran Kornblau
Git Inbox Mirror of the ffmpeg-devel mailing list - see https://ffmpeg.org/mailman/listinfo/ffmpeg-devel This inbox may be cloned and mirrored by anyone: git clone --mirror https://master.gitmailbox.com/ffmpegdev/0 ffmpegdev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 ffmpegdev ffmpegdev/ https://master.gitmailbox.com/ffmpegdev \ ffmpegdev@gitmailbox.com public-inbox-index ffmpegdev Example config snippet for mirrors. AGPL code for this site: git clone https://public-inbox.org/public-inbox.git