Can an AVCHD disc contain multiple videos?

So far I have only used AVCHD discs for short single videos but a friend has just asked whether it's possible to put several videos on one.
Obviously you could string the videos together in FCP X but that would really be one long video and not what my friend wants.

What he is referring to and what you are talking about are two different things it looks like. If you have a music & music video playlist in your itunes library, you are able to play and shuffle the list through the computers menu with your home sharing.
The problem is when airplay comes into play. For whatever reason airplay is still buggy with AppleTV. If you have a playlist that contains BOTH music videos and music and you try and play it to your apple tv from your computer it will work... to a point. IF it plays over 5 minutes of music, the "now playing" screensaver appears on the apple tv and once that is on, any music video that plays afterward will only show the album art with the audio. If you skip to the next song, however, and it happens to be a video it will play the video. Basically, to force it to play videos after it goes to the "Now Playing" screensaver, you have to actually intervene in some way... which is silly. This is a pain in the *** if you want to use iTunes DJ to play a playlist of music and videos.
Until they fix this, which will probably never happen, the only viable way to accomplish playing a music & music videos playlist is through the computers menu with home sharing.

Similar Messages

  • How I can make a folder contain pictures &video an...

    sorry if there are mistakes
     i have n95 v 31.0,017
     how I can make a folder in SD card contain pictures &video and I dont want them  appear in studio
    I dont want to use a files browser  and hide my files and i dont want  to use an application  to encrypt them because  I just  want to sort my pictures in a folder  and my video in afolder.
    thank you  
    Solved!
    Go to Solution.

    You can also try to remove them from the images folder and the  My videos folder, because this is where the Gallery will look for pictures and videos, and put them in another folder then reorganize them in sub folders within your new folder
    Show your appreciation. Hit that kudos button real hard

  • How can i print text contain multiple language

    hi all,
    i have swing application with JTextPane contains multiple data (kannada and English)
    i used to the follwoing code to print contatent of jtextPane and in this code i seted
    font Kedage(for kannada)
    if did not set to kannada font the kannada test is printing squre box
    if i set english font than kannada the english font is squre box,
    here how can i identify the the character is kannada and english
    help me to solve this problem or suggest me any other way to print multiple language
    text in JTextPane.
         public void printMeetingDetails(String meetingDate){
                   PrintJob pjob = getToolkit().getPrintJob(new JFrame(), "Meeting Details", new Properties());
                    if (pjob != null) {
                      Graphics pg = pjob.getGraphics();
                      if (pg != null) {
                        String s1 = taMeetingDetails.getText();
                        s1 = s1 + "\n Resolution :";
                        //String s2 = "\n This is the second paragraph for printing after the sample java code.";
                        String s2 = "\t"+taResolution.getText();
                        printLongString (pjob, pg, s1,s2);
                        pg.dispose();
                      pjob.end();
              private int margin = 72;
                // Print string to graphics via printjob
                // Does not deal with word wrap or tabs
                private void printLongString (PrintJob pjob, Graphics pg, String strEng,String strKan) {
                  int pageNum = 1;
                  int linesForThisPage = 0;
                  int linesForThisJob = 0;
                  // Note: String is immutable so won't change while printing.
                  if (!(pg instanceof PrintGraphics)) {
                    throw new IllegalArgumentException ("Graphics context not PrintGraphics");
                  StringReader srEng = new StringReader (strEng);
                  StringReader srKan = new StringReader (strKan);
                  LineNumberReader lnrEng = new LineNumberReader (srEng);
                  LineNumberReader lnrKan = new LineNumberReader (srKan);
                  String nextLine;
                  int pageHeight = pjob.getPageDimension().height - margin;
                // Font helv = new Font("Kedage", Font.PLAIN, 12);
                  Font helv = new Font("Kedage", Font.PLAIN, 12);
                  //have to set the font to get any output
                  pg.setFont (helv);
                  FontMetrics fm = pg.getFontMetrics(helv);
                  int fontHeight = fm.getHeight();
                  int fontDescent = fm.getDescent();
                  int curHeight = margin;
                  try {
                    do {
                      nextLine = lnrEng.readLine();
                      if (nextLine != null) {        
                        if ((curHeight + fontHeight) > pageHeight) {
                          // New Page
                          System.out.println ("" + linesForThisPage + " lines printed for page " + pageNum);
                          if (linesForThisPage == 0) {
                             System.out.println ("Font is too big for pages of this size; aborting...");
                             break;
                          pageNum++;
                          linesForThisPage = 0;
                          pg.dispose();
                          pg = pjob.getGraphics();
                          if (pg != null) {
                            pg.setFont (helv);
                          curHeight = 0;
                        curHeight += fontHeight;
                        if (pg != null) {
                          pg.drawString (nextLine, margin, curHeight - fontDescent);
                          linesForThisPage++;
                          linesForThisJob++;
                        } else {
                          System.out.println ("pg null");
                    } while (nextLine != null);
                    Font fMyFont = new Font("Kedage", Font.PLAIN, 12); //for kannada
                    //have to set the font to get any output
                    pg.setFont (fMyFont);
                    fm = pg.getFontMetrics(fMyFont);
                    fontHeight = fm.getHeight();
                    fontDescent = fm.getDescent();
                    curHeight += fontHeight;
                    do {
                      nextLine = lnrKan.readLine();
                      if (nextLine != null) {        
                        if ((curHeight + fontHeight) > pageHeight) {
                          // New Page
                          System.out.println ("" + linesForThisPage + " lines printed for page " + pageNum);
                          if (linesForThisPage == 0) {
                             System.out.println ("Font is too big for pages of this size; aborting...");
                             break;
                          pageNum++;
                          linesForThisPage = 0;
                          pg.dispose();
                          pg = pjob.getGraphics();
                          if (pg != null) {
                            pg.setFont (fMyFont);
                          curHeight = 0;
                        curHeight += fontHeight;
                        if (pg != null) {
                          pg.drawString (nextLine, margin, curHeight - fontDescent);
                          linesForThisPage++;
                          linesForThisJob++;
                        } else {
                          System.out.println ("pg null");
                    } while (nextLine != null);
                  } catch (EOFException eof) {
                    // Fine, ignore
                  } catch (Throwable t) { // Anything else
                    t.printStackTrace();
                }thanks
    daya

    hi all,
    i have swing application with JTextPane contains multiple data (kannada and English)
    i used to the follwoing code to print contatent of jtextPane and in this code i seted
    font Kedage(for kannada)
    if did not set kannada font then kannada text is not printing porperly(printg squre box)
    if i set kannada font then english font is squre box,
    here how can i identify the the character is kannada and english characater
    help me to solve this problem or suggest me any other way to print content of jtextpane which is in multiple language text.
    public void printMeetingDetails(String meetingDate){
                   PrintJob pjob = getToolkit().getPrintJob(new JFrame(), "Meeting Details", new Properties());
                    if (pjob != null) {
                      Graphics pg = pjob.getGraphics();
                      if (pg != null) {
                        String s1 = taMeetingDetails.getText();
                        s1 = s1 + "\n Resolution :";
                        //String s2 = "\n This is the second paragraph for printing after the sample java code.";
                        String s2 = "\t"+taResolution.getText();
                        printLongString (pjob, pg, s1,s2);
                        pg.dispose();
                      pjob.end();
              private int margin = 72;
                // Print string to graphics via printjob
                // Does not deal with word wrap or tabs
                private void printLongString (PrintJob pjob, Graphics pg, String strEng,String strKan) {
                  int pageNum = 1;
                  int linesForThisPage = 0;
                  int linesForThisJob = 0;
                  // Note: String is immutable so won't change while printing.
                  if (!(pg instanceof PrintGraphics)) {
                    throw new IllegalArgumentException ("Graphics context not PrintGraphics");
                  StringReader srEng = new StringReader (strEng);
                  StringReader srKan = new StringReader (strKan);
                  LineNumberReader lnrEng = new LineNumberReader (srEng);
                  LineNumberReader lnrKan = new LineNumberReader (srKan);
                  String nextLine;
                  int pageHeight = pjob.getPageDimension().height - margin;
                // Font helv = new Font("Kedage", Font.PLAIN, 12);
                  Font helv = new Font("Kedage", Font.PLAIN, 12);
                  //have to set the font to get any output
                  pg.setFont (helv);
                  FontMetrics fm = pg.getFontMetrics(helv);
                  int fontHeight = fm.getHeight();
                  int fontDescent = fm.getDescent();
                  int curHeight = margin;
                  try {
                    do {
                      nextLine = lnrEng.readLine();
                      if (nextLine != null) {        
                        if ((curHeight + fontHeight) > pageHeight) {
                          // New Page
                          System.out.println ("" + linesForThisPage + " lines printed for page " + pageNum);
                          if (linesForThisPage == 0) {
                             System.out.println ("Font is too big for pages of this size; aborting...");
                             break;
                          pageNum++;
                          linesForThisPage = 0;
                          pg.dispose();
                          pg = pjob.getGraphics();
                          if (pg != null) {
                            pg.setFont (helv);
                          curHeight = 0;
                        curHeight += fontHeight;
                        if (pg != null) {
                          pg.drawString (nextLine, margin, curHeight - fontDescent);
                          linesForThisPage++;
                          linesForThisJob++;
                        } else {
                          System.out.println ("pg null");
                    } while (nextLine != null);thanks
    daya

  • Can't target correct container for video in a Lightbox.

    I'm trying to embed a YouTube video into a Lightbox (ala, Katie's Cafe, which I did successfuly last week).  It just keeps showing up on the page, NOT in the right container. I have followed the directions about 20 times from the Katie's Cafe site, and no go. When I get to the part where you delete the existing default flower image, that image frame is no longer selected (like it says in the instructions). So I click on Widget / Container / Container then Insert HTML object, but it doesn't stick in the Lightbox, but shows up outside. I am going crazy. This is my first Muse site and I (and my client) is loving it.  Help please! and thank you.
    Barbara

    Thank you for replying. I had previously gotten it to work, but not sure how!  I did use the Composition Lightbox Display, but my problem was when I deleted the ridged flower image, somehow lost the image frame. I ended up temporarily brightly coloring each of the elements, and that helped me to target the correct element. But somehow the instructions on Katie's Cafe no longer seem to be quite accurate?  
    Anyway, just now I have another problem in that I can not select this Lightbox widget at all.  I've arranged all other page elements Backward, but no matter how many times or where I click, I cannot get the lightbox to select. Have I somehow "frozen" this object or otherwise made it inaccessible?  I need to make some changes and feel like I probably have to delete it and start over? 
    I love Muse, doing my first (fairly large) site, but am running into more little frustrations -- mostly my own ignorance, but sometimes Muse's fault!
    Barb

  • Can you import the video from an AVCHD Disc into FCP7  for editing?

    Can the video from an AVCHD Disc be imported into FCP 7 for re-editing if you have a normal Superdrive burner?
    The reason I ask is because last night our film-making club gave a show of short videos to some guests.
    At the end it was decided to put them all on one DVD to send to the visitors as a memento.
    However, some of the films were on AVCHD discs and I queried whether they could be copied, even in standard definition.
    The "copier" said it was no problem as he had a PC and had done it before . . . . . cheeky devil!
    So can it be done . . . . . on a PC or a Mac . . . . with a standard burner?
    I have just tried but nothing in the BDMV folder can be imported.

    GOT IT!
    Copy the BDMV folder from the AVCHD disc to the desktop.
    Use HandBrake to convert the .m2ts files to H.264
    Then convert the H.264 files to an editable format.
    Rather convoluted process but it works.
    Anyone know a better method?

  • When an email contains multiple attachments how can I forward just one of the attachments in a new email?

    I am new to IPAD use and need to forward one attachment from an original email that contains multiple attachments - how can I isolate and forward only one of the attachments?

    Aha! I have been doing just that. However, what has been tripping me up is that I am also used to clicking the Go Online/Go Offline toggle button on the top menu bar when I manually check for messages on Cox. Apparently when you take one inbox offline, that button switches to Off even though the other inbox is still online. If I just ignore that button and go on or off via the cox mailbox listing, it keeps comcast from being reactivated.
    Thanks so much for helping me think this through.
    Edited to add: I removed that dang button from my menu so I can stop clicking it.

  • How can I set multiple videos to "TV Show"?

    I'm importing an entire season and they all default to "Movie". So, I know that I can set the video type to "TV Show", but if I select more than one video, there is no "Video" tab. Does anyone know how to set the types of multiple videos at once?

    This is a good question and I haven't found a method yet either. This seems to be an oversight on Apple's part.
    Message was edited by: Conal Ho

  • Can't select multiple video clips to import into iMovie

    Hi, i can't select multiple video clips to import into iMovie, it only lets me import one video at a time. Apple please fix in next update or if anyone has a solution please post.

    Obviously you can not select the video to import until after iMovie populates the list of videos that are available to be imported
    LN

  • Bundles can't contain multiple app packages error

    Hi All,
    I am building an universal windows application targeting to multiple platforms x86,x64 and ARM.
    However when i build my project in TFS i get following exception
    "D:\Builds\22\MDWindowsClient\MDWindowsClient_dev\src\MDWindowsClient\MDWindowsClient.Windows\MDWindowsClient.Windows.csproj" (default target) (2) ->
    (_CreateBundle target) ->
    MakeAppx : error : Error info: error 80080204: The package with file name "MDWindowsClient.Windows_1.0.0.9_x86_Debug.appx" and package full name "SMDWindowsClient_1.0.0.9_x64__8cggqpkfn886j" is not valid in the bundle because the bundle also contains the package with file name "SMDWindowsClient.Windows_1.0.0.9_x64_Debug.appx" and package full name "SMDWindowsClient_1.0.0.9_x64__8cggqpkfn886j" which applies to the same processor architecture. Bundles can't contain multiple app packages for the same processor architecture, or an architecture-neutral app package with any architecture-specific app package. [D:\Builds\22\SMDWindowsClient\SMDWindowsClient_dev\src\SMDWindowsClient\SMDWindowsClient.Windows\SMDWindowsClient.Windows.csproj]
    MakeAppx : error : Bundle creation failed. [D:\Builds\22\MDWindowsClient\MDWindowsClient_dev\src\MDWindowsClient\MDWindowsClient.Windows\MDWindowsClient.Windows.csproj]
    MakeAppx : error : 0x80080204 - The specified package format is not valid: The package manifest is not valid. [D:\Builds\22\MDWindowsClient\MDWindowsClient_dev\src\MDWindowsClient\MDWindowsClient.Windows\MDWindowsClient.Windows.csproj]
    Already this kind of error was reported here https://social.msdn.microsoft.com/Forums/vstudio/en-US/ce255209-a94b-41c1-97f6-4659f5844ce3/how-to-create-a-windows-store-bundle-by-tfs-2013-build-system?forum=tfsbuildBut found no solution to this problem
    Any help will be hugely appreciated.
    Best Regards,
    Saurav

    Hi Saurav,  
    Thanks for your post.
    Your application is Windows Store application? And you can manually build(using MSBuild) your application on build agent machine successfully?
    As this is a reproduced issue and posted to feedback site, but there’s no a solution in that old feedback and it be closed, so please resubmit this issue to Microsoft Connect Feedback portal at:
    https://connect.microsoft.com/VisualStudio Microsoft engineers will evaluate them seriously. 
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can I play avchd discs on a Mac

    Can I play avchd discs on a Mac?

    You will need to get a bit of help for your iMac to playback AVCHD files. No native support for AVCHD playback.
    Get VLC and you can open most .mts or .m2ts files.
    iMovie/Final Cut will also let you import AVCHD.

  • Hi, is there any option how I can edit duration of multiple video clips (not stills) in iMovie 11, lets say if I want them 2 seconds long? Many thanks for any advice... Tom

    Hi, is there any option how I can edit duration of multiple video clips (not stills) in iMovie 11, lets say if I want them 2 seconds long? Many thanks for any advice... Tom

    Yes.
    iMovie 11 tutorials:
    http://help.apple.com/imovie/
    http://www.apple.com/ilife/tutorials/#imovie
    and also these:
    http://www.kenstone.net/fcp_homepage/imovie_09_stone.html
    http://www.kenstone.net/fcp_homepage/imovie_09_stone.html#interface

  • Can I broadcast multiple video chats using Adobe flash player and "RED5 flash server"?

    Hello...
    I've just joined today, and I had a question about RED5 & Adobe... Does anyone know if it is possible to broadcast multiple video  chats using Adobe flash player from "RED5 flash server"?
    Thanks,
    P.delafortune

    I am not sure whether any one of us has experience with RED 5 server - it would be best if you can post of RED 5 forums and try to get solution to your query. If you have any related query with respect to FMS - please feel free to post again.

  • Can someone please help, I have a dvd disk containing lecture videos, on a Windows pc it works fine, and the disk opens to the dvd menu. However on my macbook pro running Mountain Lion, it opens as a data disk, with video and audio in two seprate files??

    Can someone please help, I have a dvd disk containing lecture videos, on a Windows pc it works fine, and the disk opens to the dvd menu. However on my macbook pro running Mountain Lion, it opens as a data disk, with video and audio in two seprate files??

    You may need a 3rd party application to view the DVD in a wWindows format such as
    http://flip4mac-3.en.softonic.com/mac
    https://www.macupdate.com/app/iphone/5758/vlc-media-player

  • Where can I learn how FCP references video footage?

    I'm sure this is a basic (but perhaps involved?) question.
    I've been learning and using FCP on and off for over a year. I've been using online tutorials and developing a basic knowledge of the program.
    I just bought a new 27" iMac with two internal hard drives (the 256GB solid state drive, and a 2TB regular drive). Up until now, I've only ever owned computers with one internal drive, and have never even gotten into editing footage on an external drive.
    I've installed FCS 2 on my new iMac, and now I need to transfer the projects I've worked on to my new iMac, along with the video footage those projects use. And I need to know what the best way to do this is. FCS is on the solid-state drive (of course). I'm sure I should put the footage I'm editing on the secondary 2TB internal drive. And maybe the project files, too? Or should they be on the solid-state drive?
    Anyway, I really don't have a good understanding of what should be where, and what I need to be transferring, and how to make sure that FCP "knows" where to look for the footage I'm editing.
    Is there a place in the manual, or a post here, or a FAQ, or somewhere where I can read about this and get a good understanding of it? This is something I need to know, anyway, so I will know how to backup and store projects that I might want to edit further in the future.
    If it matters, I'm editing footage shot in AVCHD on a Canon camcorder. To date, all I've done is backup the actual AVCHD files on multiple drives, reasoning that if I had a crash I could edit the footage all over again. But I want to learn the proper way to do all of this.
    Thanks!

    When you "uncompress" AVCHD files
    You aren't uncompressing. You are RE-COMPRESSING. AVCHD is compressed, and you can't uncompress that. But, you compress it into an editing codec...ProRes.
    would the result be exactly the same if you did it more than once?
    Not sure what you mean by that. There will be slight loss when you recompress, but nothing you'd notice. Transcoding, as it is called, is quite a normal process. ProRes is so well designed of a codec that you can recompress to ProRes again and again 10 times before you see any issues.
    if I logged and transferred using the same settings, would the footage be exactly the same?
    You can't. FCP doesn't work with AVCHD...it must be converted to ProRes.
    My understanding is that FCP "looks" for video footage where it "expects" it to be based on how and where you imported it.
    Yes. Once you set your Capture Scratch to your external drive, say MEDIA_01...FCP keeps looking for it there. If you move it, then FCP loses contact with it. Until you tell FCP where it is again.
    Let's say I had my project saved, but somehow lost my footage. If I logged and transferred it again from the same AVCHD files, would it come out exactly the same so that (if I put it on the right drive in the right folder) my FCP project would work with it as though it was the original logged and transferred footage?
    Yes....absolutely. The project file is the most important thing. Those clips in there point to the media. If the media drive dies, or the media is deleted, simply highlight all the clips and do a BATCH CAPTURE...FCP will look for the original SOURCE files, the AVCHD files, and then re-transcode them. And they will be exactly like the first time you imported them. And your cut will be rebuilt.
    Or would there be small differences that would result in my FCP project not recognizing it?
    Yes. If you move the footage, rename the footage on the FINDER level, meaning opening the drive and renaming the raw footage, or if you rename the folder that they are in, FCP will lose the connection. Which is why you DON'T do that. Designate the Capture Scratch...import the footage, and only deal with the footage in FCP...until you really know how things work and how to get FCP to reconnect to this footage.
    Shane

  • What file format can be used to play 3D videos on Panasonic TVPlasma3D with USB PenDrive?

    What file format can be used to play 3D videos on Panasonic TVPlasma3D with USB PenDrive?
    I writed to Panasonic Italy support about this question:
    "What file format can be used to play 3D videos on Panasonic TVPlasma3D with USB PenDrive?"
    Panasonic writed me in a very poor manner and said me:
    "...riproduce formati: AVCHD (anche 3D), SD-Video, DivXHD, JPEG, MP3, AAC tramite USB e Slot SD/SDHC/SDXC card..."
    "...formato : AVCHD estensione file nella SD: .MTS..."
    I made a few videos edited with PremiereProCS5 and exported as H.264 Coding and .mp4 file extension, all side by side, with layout 1920x1080pixels that includes two stretched frames at 960x1080 pixels.
    This is the same image layout that uses the Panasonic 3D consumer camcorder "HDC-SDT750", that record AVCHD videos with file extension .MTS.
    I also tried to export another video as MPEG2 with .mpg file extension.
    But at the store the tests failed, and I cannot see anything!
    My questions are:
    1) What format can be used by PremiereProCS5 for exporting the Stereoscopic 3D videoclip and play them via USB port on Panasonic TVPlasma3D such "TX-P46VT20"?
    2) What codec should be used? H.264? H.264-bluray?
    3) What file extension should have the movie file? .mp4?
    Many Thanks!
    Horsepower0171.

    -I already read entirely those threads, but nothing about stereoscopic 3D AVCHD movies through USB port, on Panasonic TVPlasma3D.
    (Also, Sony said me that is not possible to play 3D videos on your 3DTV through USB port).
    I tried to made a H.264 videoclip, with .MP4 extension, at 960x1080p side-by-side layout, but nothing was displayed, and black screen.
    I think that just the AVCHD movies, with .MTS extension, that comes from Panasonic consumer camcorder "HDC-SDT750", can play the 3D videos via HDMI cable, not USB port.
    But not the exported videos from PremierePro via USB port.
    I seen this tutorial from David K Helmly:
    http://www.youtube.com/user/dhelmly#p/a/u/1/_YtF0c2bmkw
    Dave export the video from PremiereProCS5 as "MPEG2-bluray" format with "Match Source Attributes (HighQuality)" Preset, and build the Bluray Disc in EncoreCS5, with the footage as MPEG2 with .m2v file extension:
    1) Anyone tried to play correctly in 3D, those MPEG2-.m2v side-by-side files, in Panasonic3DTV, with BlurayDiscReader?
    2) Why MPEG2.m2v side-by-side?
    3) The official standard stereoscopic 3D format, is not the .MVC (MultiViewCoding) for Bluray3D Disc?
    I am confused!
    Help!
    Horsepower0171.

Maybe you are looking for