<div dir="ltr"><div class="gmail_default" style="font-size:small">For bluray lpcm profile option, the ffmpeg patch 99 changes and the bdcreate changes in this thread have been checked into GIT.</div><div class="gmail_default" style="font-size:small">In addition the "chapter intervals" for tsmuxer has been updated in the manual GIT checkin.</div><div class="gmail_default" style="font-size:small"><br></div><div class="gmail_default" style="font-size:small">Truehd is still not working but maybe in the near future it will get resolved as it would be nice to have.<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, May 2, 2022 at 3:52 PM Andrew Randrianasulu <<a href="mailto:randrianasulu@gmail.com">randrianasulu@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br><br>On Tuesday, May 3, 2022, Andrew Randrianasulu <<a href="mailto:randrianasulu@gmail.com" target="_blank">randrianasulu@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br><br>On Tuesday, May 3, 2022, Phyllis Smith <<a href="mailto:phylsmith2017@gmail.com" target="_blank">phylsmith2017@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-size:small">A little more testing shows 1 small issue -- it is now just 1 big chapter so you can fast forward but can not skip to the next chapter since there are none.</div></div></blockquote><div><br></div><div>there is </div><div><br></div><div>--auto-chapters     Insert a chapter every <n> minutes. Used only in BD/AVCHD</div><div><br></div><div>option for tsmuxer. </div><div><br></div><div>you can try to set it by hand in bd.meta file and remux, and if it works as intended we can put it into default tsmuxer options... </div></blockquote><div><br></div><div><br></div><div>something like this (ignore first strcpy delete - git rebase pulled same string twice..) </div><div><br></div><div>$ git diff bdcreate.C</div><div>diff --git a/cinelerra-5.1/cinelerra/bdcreate.C b/cinelerra-5.1/cinelerra/bdcreate.C</div><div>index 7930114f..16c655a5 100644</div><div>--- a/cinelerra-5.1/cinelerra/bdcreate.C</div><div>+++ b/cinelerra-5.1/cinelerra/bdcreate.C</div><div>@@ -230,8 +230,6 @@ CreateBD_Thread::CreateBD_Thread(MWindow *mwindow)</div><div><br></div><div>        strcpy(use_profile,"bluray.m2ts");</div><div><br></div><div>-       strcpy(use_profile,"bluray.m2ts");</div><div>-</div><div>        this->bd_size = BD_SIZE;</div><div>        this->bd_width = BD_WIDTH;</div><div>        this->bd_height = BD_HEIGHT;</div><div>@@ -349,12 +347,14 @@ int CreateBD_Thread::create_bd_jobs(ArrayList<BatchRenderJob*> *jobs, const char</div><div>        }</div><div><br></div><div><br></div><div>-       fprintf(fp,"MUXOPT --blu-ray --hdmv-descriptors\n");</div><div>+       fprintf(fp,"MUXOPT --blu-ray --hdmv-descriptors --auto-chapters=5\n");</div><div>        fprintf(fp,"V_MPEG4/ISO/AVC, bd.m2ts, track=4113\n");</div><div>        if(!strcmp(use_profile, "bluray.m2ts"))</div><div>        fprintf(fp,"A_AC3, bd.m2ts, track=4352\n");</div><div>        if(!strcmp(use_profile, "bluray_lpcm.m2ts"))</div><div>        fprintf(fp,"A_LPCM, bd.m2ts, track=4352\n");</div><div>+       if(!strcmp(use_profile, "bluray_truehd.m2ts"))</div><div>+       fprintf(fp,"A_MLP, bd.m2ts, track=4352\n");</div><div>        fprintf(fp,"\n");</div><div>        fclose(fp);</div><div><br></div><div>$</div><div><br></div><div><br></div><div><br></div><div><br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_default" style="font-size:small">Not sure if having chapters is even possible, but better than giving errors.  Thanks.<br></div></div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Mon, May 2, 2022 at 12:08 PM Andrew Randrianasulu <<a href="mailto:randrianasulu@gmail.com" target="_blank">randrianasulu@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">attempt at fixing our version of patch to behave the same as new upstream<div><br></div><div>Phyllis, I am terribly sorry - can you retest BBB - > lpcm bluray again with this patch and tsmuxer? </div><div><br></div><div>ps: I think cmake can generate plain Makefiles, not ninja ones... you can try and tweak linux build script by removing '-G ninja' ... <br><br>On Monday, May 2, 2022, Andrew Randrianasulu <<a href="mailto:randrianasulu@gmail.com" target="_blank">randrianasulu@gmail.com</a>> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><a href="https://git.ffmpeg.org/gitweb/ffmpeg.git/blobdiff/b67572c7c707d508b15ce0543519208cf5d1fcfb..a84b95dc08da1174b4477e6250077bf22bb543b0:/libavcodec/pcm-blurayenc.c" target="_blank">https://git.ffmpeg.org/gitweb/ffmpeg.git/blobdiff/b67572c7c707d508b15ce0543519208cf5d1fcfb..a84b95dc08da1174b4477e6250077bf22bb543b0:/libavcodec/pcm-blurayenc.c</a><div><br></div><div>need to adapt..... </div><div><br></div><div>Paul, *BIG* thanks for speedy responce! </div>
</blockquote></div>
</blockquote></div>
</blockquote>
</blockquote>
</blockquote></div>