How to merge .m4v files with chapters included?

I am unable to merge two .m4v files in quicktime pro and keep their chapter structure. Is this even possible? I take a lot of time to build chapters into movies I make and I would like to be able to combine some AND keep the chapter structure.
Here is what I have:
Movie A: 12 chapters
Movie B: 10 chapters
open movie A in quicktime pro
open movie B in quicktime pro
copy movie B (command+A, command+C)
select movie A
push needs to end of movie A
paste clipboard (command+V)
Result:
Movie A now has it's original 12 chapters and then the added movie B is just one long section added on to the end of Movie A's last chapter.
Any help would be appreciated. This seems to be an ongoing question on many forums.
-i

1) is there any way to use your method that give me a final .m4v?
Well, your questions are certainly getting harder. How a bout no, yes, and maybe.
a) No, I do not know of a direct approach for simply changing the file container. As you may have noted, QT now checks the Video Track "Sample Description" and if the extension does not match the description, QT sends you a "nastygram" modal message and refuses to open the file.
b) Yes, it can be done indirectly. In this case I used the SimpleMovieX ($35) from Aero Quartet of Catalonia, Spain. While I tend to use QT Pro and MPEG Streamclip for most day-to-day work, this application does have some unique features to which I resort when needed. One is the "Keyframe" combined indicator/skip option, one is its audio manipulations, and another is the way it handles H.264/AAC MOV file container conversion. (I also do a lot of "track management" work that leaves me in an MOV file when I actually want MP4 or M4V file container features like being able to associate external "artwork" images in iTunes.) In any event, this application does actually go through and correct the descriptors before it copies the appropriate data to the new container making QT ever so happy with the new MP4 container. At this point, if I modify the MP4 Extension to M4V in the Finder, QT then does not issue the modal message and does use iTunes as the default application to open the file.
c) Maybe the file is considered to be a real M4V file and maybe it is not. I have not, for instance tried to add a "Passthrough" AC3 secondary audio track and check to see if the resulting file will play correctly via TV. So there may yet be some internal distinctions of which I am yet unaware. Other than that, the file does indeed seem to function as any other iTunes file created by direct M4V data compressed export.
Anyway, this is from the "for whatever it is worth" department and you can invest $35 in the application or try to find another application capable of doing the same thing. MPEG Streamclip, for instance, will not work here but I have not actually looked around for anything else.
2) if I use the final .MOV that you get at the end of your tutorial, will exporting as "apple tv" or mpeg 4 etc. compress it again?
Yes, it will. In addition, depending on the application used to perform the export, you may lose the chapter track also.

Similar Messages

  • How to merge 4 files with VBA

    I have 4 files that I want to automatically merge using Visual Basic for Applications Code. I've searched through this forum and it seems that first you open the first pdf with PDDoc and then you use PDDoc.InsertPages to add the 2nd PDF and so on. Note these 4 files are each one page long. I am using Adobe Acrobat Professional and no this is not a server based application that I am developing. I am not interested in Adobe Live Cycle Designer. I am having difficulty inserting the page. I do not know how to define/specify the iPDDocSource As Object. The code I have written so far is below. Note eventually I want this to be invisible (ie PDDoc), but being able to perform using AVDoc could also be useful. Thanks.
    Dim Path As String, Path1 As String, Path2 As String
    Dim Path3 As String, Path4 As String
    Dim gApp As Acrobat.AcroApp
    Dim gPDDoc As Acrobat.AcroPDDoc
    Dim iPDDocSource As Acrobat.AcroPDDoc
    Dim jso As Object
    Dim gAVDoc As Acrobat.AcroAVDoc
    Path = "C:\junk" & "\"
    Path1 = Path & "1.pdf"
    Path2 = Path & "2.pdf"
    Path3 = Path & "3.pdf"
    Path4 = Path & "4.pdf"
    Dim WshShell As IWshRuntimeLibrary.WshShell
    Set WshShell = CreateObject("Wscript.Shell")
    WshShell.CurrentDirectory = "C:\Program Files\Adobe\Acrobat 8.0\Acrobat\"
    WshShell.Run "Acrobat.exe"
    Set gApp = CreateObject("AcroExch.App")
    Set gPDDoc = CreateObject("AcroExch.PDDoc")
    Set gAVDoc = CreateObject("AcroExch.AVDoc")
    'Set iPDDocSource = CreateObject("AcroExch.PDDoc")
    ok = gAVDoc.Open(Path1, "1") 'This works
    ok3 = gPDDoc.InsertPages(0, iPDDocSource, 0, 1, 0)
    '<-- Problem here with iPPDocSource
    Set gAVDoc = Nothing
    End Sub

    I am an absolute hack when it comes to programming in Visual Basic. In the past as a Structural Engineer I have programmed a lot in Fortran, but I have also written programs in a lot of other languages as well. However, programming is not my primary job, but I am better at it than your first impression implies, but not by much. I accidentally omitted the Sub MergePDF() text at the top of the code. This routine is part of a larger program run from MS Excel VBA that is already complete. Yes I do tend to kludge stuff together until it works, thats what examples are for. Therefore I made multiple dims and other declarations that aren't necessary because I do not have a familiarity with the Adobe SDK. However, the Acrobat SDK is not as intuitively obvious to the casual observer as you would have me believe. It seems to be written more for the C and Java programmers. All of that aside you did help me solve my problem so thank you. Thanks Reinhard for the code that may give me other ideas to explore. The following code was all I required for my current application.
    Sub MergePDF()
    Dim Path1 As String, Path2 As String, Path3 As String, Path4 As String
    Dim gPDDoc1 As AcroPDDoc
    Dim gPDDoc2 As AcroPDDoc
    Dim gPDDoc3 As AcroPDDoc
    Dim gPDDoc4 As AcroPDDoc
    Set gPDDoc1 = CreateObject("AcroExch.PDDoc")
    Set gPDDoc2 = CreateObject("AcroExch.PDDoc")
    Set gPDDoc3 = CreateObject("AcroExch.PDDoc")
    Set gPDDoc4 = CreateObject("AcroExch.PDDoc")
    chk1 = gPDDoc1.Open("C:\junk\1.pdf")
    chk2 = gPDDoc2.Open("C:\junk\2.pdf")
    chk3 = gPDDoc3.Open("C:\junk\3.pdf")
    chk4 = gPDDoc4.Open("C:\junk\4.pdf")
    mergefile = gPDDoc1.InsertPages(0, gPDDoc2, 0, 1, 0)
    mergefile = gPDDoc1.InsertPages(1, gPDDoc3, 0, 1, 0)
    mergefile = gPDDoc1.InsertPages(2, gPDDoc4, 0, 1, 0)
    savemergefile = gPDDoc1.Save(1, "C:\junk\merged.pdf")
    End Sub

  • How to export 1080 HD video to MPG4 file with chapters?

    Now that I have put a sequence together in FCE, how do I create a 1080HD MPG4 file that can be used on a PC, MAC or with the WD HD Media player (for those that know the latter).
    Thanks!

    That process will work, but won't give you HD video (as iDVD output is only SD). If you have FCE and Quicktime Pro, you could create what you are after.
    1) In FCE, use File->Export->Quicktime movie ... (and include all markers) -> File1
    2) In FCE, use File->Export->Using Quicktime Conversion ... -> File2
    3) Using Quicktime Pro open File1 and File2, extract the chapter track (text track) from File1 and then add it to File2.
    4) Using Quicktime Pro make the newly added text track in File2 the chapters for the video track. Save the result a self contained QT movie file.
    You will now have a a HD video file with chapters.

  • How Merge Temp File With Photoshop File

    Hi Friends,
    I Deleted Temp File, And Now get A Error when open photoshop file " Could Not Complet ... is not a valid photoshop format " and my file size is 60mb
    and i have temp file that size is 2.50GB but How Merge Temp File With Photoshop File?
    Thank you So Much

    You can search for recovery programs  but most likely if it a temp file is not an image file.  You could also try renaming the file to have an image file type and try to open with Photoshop. Again its most likely not an image file. Photoshop only supports some image files formats.

  • How do I export as in AIFF file with chapters to burn in iTunes?

    I taped a round table discussion which is about an hour long. After editing in FCE, I need to make a CD of the discussion, ideally creating 12 five minute long songs. Is there a way to export an aiff file with chapters which I can then burn in iTunes as 12 separate songs? Please tell me I don't need to make and export 12 separate sequences.

    Mark In and Out points in the timeline. Export. MArk new In and Out points and export again. Rpeat 10 more times.

  • (SOLVED) Trouble merging .pacnew files with meld

    Dear Archers
    Unable to merge .pacnew files, following the example on ArchWiki. Only, the difference between the two files shown
    [root@KRISHNA san2ban]# #!/bin/bash
    [root@KRISHNA san2ban]# # pacnew-update - merge *.pacnew files with original configurations with meld
    [root@KRISHNA san2ban]#
    [root@KRISHNA san2ban]# pacnew=$(find /etc -type f -name "*.pacnew")
    [root@KRISHNA san2ban]#
    [root@KRISHNA san2ban]# for config in $pacnew; do
    > # Merge with meld
    > gksu meld ${config%\.*} $config &
    > wait
    > done
    [1] 1578
    GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: Failed to get connection to session: The connection is closed)
    GConf Error: Failed to contact configuration server; the most common cause is a missing or misconfigured D-Bus session bus daemon. See http://projects.gnome.org/gconf/ for information. (Details - 1: Failed to get connection to session: The connection is closed)
    Also, on the Archwiki, we are advised to change 'kdesu' to 'gksudo' for GNOME, but I think it should be gksu
    Last edited by San2ban (2011-08-18 14:07:53)

    San2ban wrote:
    Dear Karol
    Thanks. yes, manual intervention is needed
    Wonder how it will be without you guy's guiding us
    You bet your ass, manual intervention is needed. If you try to blindly just merge *.pacnew with original files, it might lead to an unbootable system. Especially when you get pacnew files for /etc/group and /etc/inittab

  • How to delete the file with space in name

    Hi
    I want to delete the file "test ex.txt" file.
    i run the following command in command prompt.i can delete the file successfully.
    /bin/rm -f /mnt/"test ex.txt"
    I want to run the command from java.So i am using the following code
    String cmd = "/bin/rm -f /mnt/\"test ex.txt\"";
         Runtime rt = Runtime.getRuntime();
    process = rt.exec(cmd);
    The file was not deleted.
    How to delete the file with space in name?
    Help me

    Use the form of exec that takes an array of command + args.
    arr[0] = "/bin/rm"
    arr[1] = "-f"
    arr[2] = "/home/me/some directory with spaces";Or use ProcessBuilder, which is the preferred replacement for Runtime.exec, and which Runtime.exec calls.

  • How to open a file with the extension x3f (sigma)

    how to open a file with the extension x3f (sigma)?

    RAW data from the following Sigma cameras is currently supported:
    DP1
    DP1s
    DP2
    SD9
    SD10
    SD14
    If your camera is among these, then simply import the photo as usual. https://helpx.adobe.com/lightroom/help/importing-photos-lightroom-basic-workflow.html

  • How to validate xml file with XSD schema ??  in JDK1.4.2

    How to validate xml file with XSD schema ?? in JDK1.4.2
    i dont want to use new Xerec Jar ...
    Suggest option ...

    Please do not double-post. http://forum.java.sun.com/thread.jspa?threadID=5134447&tstart=0
    Then use Stax (Woodstock) or Saxon.
    - Saish

  • Merging output files with bursting ...

    BIP 5.6.3 (eBus 11.5.10.2 + bursting integration patch)
    We have a case where we are attempting to burst a subset of the records to a single merged PDF file, with other records being sent to individual files (same template for all records). I thought that I had seen this merging with emails where the xapi:email and xapi:message details were the same (before our development environment was refreshed), but cannot reproduce this now.
    When I try this with file system output (xapi:filesystem), I get the following error in the bursting log file:
    --Exception
    duplicate entry: /MergedFileName.pdf
    java.util.zip.ZipException: duplicate entry: /MergedFileName.pdf
    Is it possible to generate a merged PDF file (xapi:filesystem) of some of the records?
    Thanks,
    theFurryOne

    Yuvaraj,
    As you discovered, it is not possible to use .jdb files from one environment in a different environment.  The .jdb files use an internal format with relationships between files that form the Btree.
    I'm glad to hear you were able to use DbDump and DbLoad successfully.
    --mark

  • Exporting Long Projects to AAC Files with Chapters

    Hey
    Is it possible to export an AAC file with chapters at around two hours in length?
    I get the "maximum file size of 2gb exceeded" if I try from Garage band (even though the wav the project is made from is made from is only 1.2Gb and the estimated AAC file after export is 58mb)
    I've also tried from the latest version of Sound Track Pro, but that just hangs on export.
    Anyone have any clues?
    All the best,
    Gus

    I don't think you there is a command to do what you are asking automatically for a bunch of clips, but FCP X supports chapter markers. You just have to add them in the timeline.
    If the project settings equal the clip settings and the export settings, there should be no transcoding involved.
    However, I believe that a simpler solution can be achieved (and this one is guaranteed to do no transcoding).
    Download and install QTCoffee (a free download from http://www.3am.pair.com/QTCoffee.html)
    Open a terminal window, type "catmovie -o mymovie.mov -auto-chapters "
    (without the quotes but with the trailing SPACE; use the name you want to give the new movie instead of mymovie.mov)
    Drag the movie files into the terminal window. Press ENTER.
    Boom! (couldn't resist :-))
    p.S.: By default this will place the newly created movie in your home folder (or on whatever is the active directory in the terminal shell at the time)

  • How to create pdf files with text field data

    how to create pdf files with text field data

    That looks like it should work, but it doesn't.
    I opened the PDF I had created from Word in Acrobat (X Pro). Went to File > Properties. Selected "Change Settings". I then enabled "Restrict editing...", set a password, set "Printing Allowed" to "none", "Changes Allowed" to "none", and ensured that "Enable copying of text..." was disabled.
    I saved the PDF file, closed Acrobat, opened the PDF in Reader, and I was still able to select text and graphical objects.
    I reopened the PDF in Acrobat, and the document summart still shows everything as allowed. When I click on "show details" (from File > Properties) it shows the correct settings.
    Any ideas?

  • Is it possible to joing files with chapters bookmarks WITHOUT NEEDING transcoding?

    Is it possible in FCPX to joing files with chapters bookmarks at the beginning of each clip (clips and project propieties the same so no need to render) and then exporting the project as one file WITHOUT NEEDING transcoding? Simply I want to join homogeneus files and place chapter marks inbetween. Or any program that does this? thanks

    I don't think you there is a command to do what you are asking automatically for a bunch of clips, but FCP X supports chapter markers. You just have to add them in the timeline.
    If the project settings equal the clip settings and the export settings, there should be no transcoding involved.
    However, I believe that a simpler solution can be achieved (and this one is guaranteed to do no transcoding).
    Download and install QTCoffee (a free download from http://www.3am.pair.com/QTCoffee.html)
    Open a terminal window, type "catmovie -o mymovie.mov -auto-chapters "
    (without the quotes but with the trailing SPACE; use the name you want to give the new movie instead of mymovie.mov)
    Drag the movie files into the terminal window. Press ENTER.
    Boom! (couldn't resist :-))
    p.S.: By default this will place the newly created movie in your home folder (or on whatever is the active directory in the terminal shell at the time)

  • How should i share file with other devices such as nokia,blackberry and etc using bluetooth

    I want to share  files between other deivce such as nokia but couldnt, could u help me tell how can i share files with other devices???

    @AKRBTN: Thanks for the reply and info.
    That is a solution, but it really isn't viable.
    It is sad that apple refuses to support this.
    A simple example: Sitting somewhere with no signal and you want to share a file (photo) with your colleague or friend, who happens to be right next to you.
    Or even if there is signal and you don't want to be paying fees or data charges.
    Or you may be in a rehearsal studio and need to share that very important file and have no time to go outside and get signal and try to send the file, which then everyone else has to go outside and catch the signal and pay fees.
    Anyway, I see that this is a dead end with apple, so I guess I will be back to carrying 2 phones around again.
    Peace,
    SB

  • How could I delete files with name string with "TAL" and older than 05.05.

    How could I delete files with name string with "TAL" and older than 05.05.2009 on unix

    Our ECC Ides system today was not responsible. For first time 17 users were working on the systtem (IWN2008/SQL2005 based). Before the people were maximally 5.
    The server is done by making a homogeneous system copy from an blade machine(now it is an VIrTUAL)
    There was enaught disk space. However I checked Wokload 03sdn transaction) inn system. and found out that at that time of restarting(I had to restart system 3 times to get logged on the system and even then it was almost unresponsive.
    I can found in there top abap."Login_Pw", "SESSION_MANAGER", "?". (BAtch), "ADMSBUF, >DEleyed Function call, RSPOWPOO""RSWWclear", ""VA01", "SAPMHHTP  "Buf  Sync" >DDLOC CLEANUP)""rsbtctE"
    What can I do?
    ¸
    Who could interfer SAP_CCMS_MONI_BATCH_DPSAP_CCMS_MONI_BATCH_DP
    the 2 main users under users profile were ZUGTIN running and SAPSYS( running many system jobs)
    How to approach the problem

Maybe you are looking for

  • Scheduling Automatic Database objects comparison through Oracle CHange Mana

    HI, I need to compare some schemas for two databases regularly to make sure that the databases are in sync state.Could you guys pls tell me if there is any option/way through which i can do the automatic scheduling to compare the DB objects of the tw

  • [Solved]Openbox3 Update

    I like the new default menu in openbox. It is much more, realistic/practical/useful. But, the new logout option kills openbox. It gives the All your base error. The exit option also prompts a 'cancel' or 'ok' option, whether you want it to or not. Th

  • Modem doesn't detect incoming calls

    Hi everybody, I use an apple external usb modem for fax reception. The modem detects the incoming call if coming from an internal call, but doesn't detect it if its an external call. The ring patterns are different: internal call: DRON 100(1/100sec)

  • Canvas and image sizes

    When placing a frame onto a photo the canvas increases in size. The canvas area outside of the frame/ photo area is checkered and I have read on the forum that this means it is transparent, right? Is yes, then how do I get Photoshop to stop printing

  • HP ZR2740W unexpected​ly turns itself off

    I have an HP ZR2740W which I bought in December 2011. It has been working flawlessly with my HP desktop HP Pavilion h8-1080t (with AMD Radion HD 6850) until today. Today after 30-60 minutes of use (time varies) the monitor suddenly turns itself off.