Hi MrC,
I'm having a little issue with chapters on a 29.997 framerate avi file. They are not being inserted by muxman for some reason. I have had success with PAL avi files which is strange. I have attached the main log file as well as the muxman log file. The chapter points aren't appearing in the muxman log file.
You'll notice from the main log that this isn't the original log. I saved the *ac3 and *mkv file and tried a few different chapter settings in the hope of getting it to work.
+ Reply to Thread
Results 1 to 12 of 12
-
-
MrC,
I tried various combinations but started out with Preferences - 'Chapters Interval' - set to 5 mins, and 'Use source chapters list' - ticked. Then on Edit Title - 'Auto chapters setup' - ticked. I was of the opinion with this arrangement that if source chapters were present they would be used, but as there aren't any they would be created every 5 minutes. -
I cannot replicate the issue, so it is very difficult to understand. To have Muxman create chapters there's should be a "C:\Users\Clare\AppData\Local\Temp\DVD_0_full_Chap ters.txt" and the corresponding command lines in "C:\Users\Clare\AppData\Local\Temp\DVD_0_BatchMux. ini":
Code:-cellfr "D:\Movies\DVD\DVD_0_full_Chapters.txt" -progfr "D:\Movies\DVD\DVD_0_full_Chapters.txt" -chapfr "D:\Movies\DVD\DVD_0_full_Chapters.txt"
-
Would it be possible to add a feature to the edit title window that creates a chapter point for every video source? -- for example, when creating a DVD consisting of multiple music clips. Thanks for a great program.
-
It is created just before Muxman (BatchMux) starts. If it can help, this is the VB code:
Code:Chapters_List = "" With OutputMediaInfo If .ReadMediaInfo(frmMain.Txt_Path_Output.Text & "\" & TitleName(Tj) & ".m2v", , False) = True Then Chapters_List_Array = Split(Title(Tj).ChaptersList, " ") VideoFrameCount = Int(Val(.VideoFrameCount)) If Val(.VideoFPS) = 23.976 Then VideoFrameCount = VideoFrameCount * 29.97 / 23.976 End If For jj = 0 To UBound(Chapters_List_Array) If Val(Chapters_List_Array(jj)) < VideoFrameCount - 5 * FPS Then ' 5 seconds safeguard Chapters_List = Chapters_List & Chapters_List_Array(jj) & vbCrLf End If Next jj Else Chapters_List = Replace(Title(Tj).ChaptersList, " ", vbCrLf) End If End With Set OutputMediaInfo = Nothing If Chapters_List <> "" Then NumFile = FreeFile Open frmMain.Txt_Path_Output.Text & "\" & TitleName(Tj) & "_Chapters.txt" For Output As #NumFile Print #NumFile, Chapters_List Close #NumFile If modUtil.GetFileSize(frmMain.Txt_Path_Output.Text & "\" & TitleName(Tj) & "_Chapters.txt") > 0 Then BatchMux_ini = BatchMux_ini & "-" & Segment & "cellfr """ & frmMain.Txt_Path_Output.Text & "\" & TitleName(Tj) & "_Chapters.txt""" & vbCrLf BatchMux_ini = BatchMux_ini & "-" & Segment & "progfr """ & frmMain.Txt_Path_Output.Text & "\" & TitleName(Tj) & "_Chapters.txt""" & vbCrLf BatchMux_ini = BatchMux_ini & "-" & Segment & "chapfr """ & frmMain.Txt_Path_Output.Text & "\" & TitleName(Tj) & "_Chapters.txt""" & vbCrLf End If End If
Bye -
The code is a little bit technical for me I'm afraid. I do have the following observation however I'm not sure if it's of any significance. If I encode with HCenc 2 pass vbr there are no chapters created in the resultant DVD. However if I encode with QuEnc 1 pass vbr then the chapter.txt file is created and the resultant DVD has chapters. Do this shed any light on this situation?
-
I just noticed from the DVD_0.log file that the output m2v file is detected as follow:
MPEG-2 Video - 9450 kbps - 720x480 - DAR 1.778 - 29.97 fps (CFR) - Progressive (TFF) - 1 seconds - 40 frames
2 issues: very high bitrate (should be max 9000 kbps) and duration (should be 1:57:51 hours as input file). It seems that MediaInfo is detecting a wrong duration when your input file is encoded with HCenc. And what about bitrate, have you changed the default settings?
Bye
Similar Threads
-
AVStoDVD subtitles problem
By IllusionOfLife in forum Authoring (DVD)Replies: 7Last Post: 14th Sep 2012, 11:37 -
AVStoDVD srt Subtitle Problem
By adyf in forum SubtitleReplies: 15Last Post: 6th Dec 2010, 13:27 -
avstodvd problem...
By VicSedition in forum Newbie / General discussionsReplies: 1Last Post: 20th Feb 2010, 06:22 -
AVStoDVD Chapter help?
By uEih in forum Authoring (DVD)Replies: 0Last Post: 24th Nov 2009, 06:34 -
Problem with AVStoDVD...
By ufcdanny in forum Authoring (DVD)Replies: 3Last Post: 8th Sep 2008, 01:58