Importing & Naming Help

HI Folks
I'm a fan of the Adam Carolla Radio Show. I subscribe to his podcast.
I 've downloaded some of his earlier shows from a sharing service and they arrive as an mp3 (not a podcast) label eg. 20060103. I download about 6 of his old shows everyday
I'm trying to figure the easiest way to import them into itunes without having to use the id3 tags to name everything.
Can I create a folder named Adam Carolla in itunes and just drop them in there? Therefore being able to bypass the naming using id3 or do I have no choice?
Any tips and help would be greatly appreciated.
Thanks
Ho Ronto
1st Gen iPod Shuffle (v 1.1.5 software) Windows XP

If it is a valid mp3 you can import it into iTunes. If iTunes does not see the ID3 tags, it will default Name to the filename, i.e. 20060103 in this case, and leave the Artist and Album blank.

Similar Messages

  • OS is Mountain Lion, upgraded no problems, used an external Hard drive for my time machine, now my iPhoto will not show any of my photo's or ay new ones I import! Help please!!

    OS is Mountain Lion, upgraded no problems, used an external Hard drive for my time machine, now my iPhoto will not show any of my photo's or ay new ones I import! Help please!!

    Do you get this window when you hold down the Command+Option keys and launch iPhoto?
    If not then you're not holding down both keys long enough.
    OT

  • Canon XHA1 won't import in imovie 9.0.4. IMac 27 (late 2011 model) sees camera and operates controls but won't import. Help?

    Canon XHA1 won't import in imovie 9.0.4. IMac 27 (mid 2011 model) sees camera and operates controls but won't import. Help?

    im having a similar problem but imovie will not recogize my camera at all. i have the same imac. how did you get imovie to detect your camera.

  • Hi, i have a canon 60d and i have been importing videos from it onto my mac for months but suddenly when i go on image capture or iphoto it no longer allows me to import them help!!!

    Hi, i have a canon 60d and i have been importing videos from it onto my mac for months but suddenly when i go on image capture or iphoto it no longer allows me to import them help!!!

    Have you launched and tired Image Capture? When it's launched with the iPad connected the photos will display in the window.  Select those you want to upload and use the Import to: menu and select Other.  Navigate to the Desktop and select the folder you created to hold those photos.

  • Import Image Help

    Hello, now first, I want to point out that I have absolutely no idea how java works (maybe that's not true...), a noob if you will, I don't use it, but I need help because I have to do this for school.
    Alright, now I use this program called BlueJ. I want to know if there is a code for java to import images from file (c:\...), and put it as a background. here is my code:
    import java.applet.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.net.URL.*;
    // Kazuma Tonegawa
    // Info Tech 10
    // Block E
    public class TermOneProject
         // Draws the small "b"
         public static void main (String[ ] args) 
         {    Egyptian sam;            // create the variable named sam
              sam = new Egyptian();    // create the object sam refers to
              sam.getImage(http://www.htmlprimer.com/Images/index/logo.gif);
              sam.makeGuy ();    // Draws the straight bar of "b"
         }  // this right-brace marks the end of the main method
    }  // this right-brace marks the end of the class
    //I tried every thing but nothing works. I have no clue on how to do this, not even my teacher. can someone help on this?? Remember, I want to import from MY DRIVE. Thanks in advance.

    k, here's the egyption class:
    public class Egyptian extends StarTurtle
    // Make a 10x10 square; finish with the same position/heading.
    public void makeGuy()
    { move (90, 200);
    move (-90, 0);
    paint (-20, 25);
    paint (120, 25);
    paint (120, 25);
    move (-40, 25);
    paint (20, 25);
    paint (-120, 25);
    paint (-120, 25);
    move (60, -10);
    move (120, -30);
    move (-45, -15);
    swingAround (40);
    move (-95, 0);
    paint (0, 40);
    move (0, -20);
    paint (-90, 10);
    move (90,18);
    paint (-10, 50);
    paint (-170,45);
    move (0,10);
    move (80,10);
    paint (110,50);
    move (0,-50);
    move (140,35);
    move (110,-5);
    move (10,35);
    paint (0,50);
    move (90,0);
    paint (0,65);
    paint (90,35);
    paint (-90,20);
    move (0,-20);
    move (-90,35);
    move (-90,65);
    paint (0,65);
    paint (90,35);
    paint (-90,20);
    move (0,-20);
    move (-90,35);
    move (-90,65);
    paint (-90,70);
    paint (90,65);
    paint (-90,35);
    paint (-90,20);
    move (0,-20);
    move (-90,35);
    move (-90,65);
    paint (0,65);
    paint (90,35);
    paint (-90,30);
    move (0,-20);
    move (-90,35);
    move (-90,65);
    } //======================
    }it's supposed to be some guy. anyways, one thing I forgot to mention. I set it so that the egyption class extends a thing called starturtle, then starturtle extends smartturtle, then that extends the turtle, and finally it extends turtlet (which extends object) I'll put the turtle, and turtlet class just in case:
    Turtlet
    // Copy this file in its entirety to a file named Turtlet.java.
    // Compile it before compiling the Turtle.java file.
    // You can put Turtle commands inside the paint method of an applet if
    // you declare them as Turtlets rather than as Turtles using something like
    // new Turtlet (page, 100, 150), where page is paint's Graphics parameter
    // and you replace 100 by any x-coordinate and 150 by any y-coordinate to
    // obtain the starting point of your Turtlet.
    import java.awt.Color;
    public class Turtlet extends Object
    {     public static final double DEGREE = Math.PI / 180;
         public static final Color RED = Color.red, BLUE = Color.blue,
                        BLACK = Color.black,      GRAY = Color.gray,
                        YELLOW = Color.yellow,    PINK = Color.pink,
                        ORANGE = Color.orange,    GREEN = Color.green,
                        MAGENTA = Color.magenta,  WHITE = Color.white;
         private static java.awt.Graphics thePage;
         private double heading = 0;         // heading initially east
         private double xcor, ycor;          // current position of Turtle
         /** Set the drawing Color to the given value.  Made an instance method 
          *  only so that it cannot be called until thePage is assigned, although
          *  the drawing color is a property of thePage, not of one Turtle. */
         public void switchTo (Color given)
         {     thePage.setColor (given);
         }     //======================
         /** Write words without changing the Turtle's state.  */
         public void say (String message)
         {     thePage.drawString (message, round (xcor), round (ycor));
         }     //======================
         /** Supply the nearest int value to methods requiring ints. */
         private int round (double x)
         {     return (int) (x + 0.5);
         }     //======================
         /** Make a circle of the given radius, Turtle at center. */
         public void swingAround (double radius)
         {     if (radius > 0.0)
              {     int rad = round (2 * radius);
                   thePage.drawOval (round (xcor - radius),
                              round (ycor - radius), rad, rad);
         }     //======================
         /** Fill a circle of the given radius, Turtle at center. */
         public void fillCircle (double radius)
         {     if (radius > 0.0)
              {     int rad = round (2 * radius);
                   thePage.fillOval (round (xcor - radius),
                             round (ycor - radius), rad, rad);
         }     //======================
    // the Turtle class, completed
         /** Rotate left by left degrees; MOVE for forward steps. */
         public Turtlet move (double left, double forward)
         {     heading += left * DEGREE;
              xcor += forward * Math.cos (heading);
              ycor -= forward * Math.sin (heading);
              return this;
         }     //======================
         /** Rotate left by left degrees; PAINT for forward steps. */
         public Turtlet paint (double left, double forward)
         {     heading += left * DEGREE;
              double x = xcor + forward * Math.cos (heading);
              double y = ycor - forward * Math.sin (heading);
              thePage.drawLine (round (xcor), round (ycor),
                               round (x), round (y));
              xcor = x;
              ycor = y;
              return this;
         }     //======================
         /** Fill a rectangle of the given width and height, Turtle at center. */
         public void fillBox (double width, double height)
         {     if (width > 0.0 && height > 0.0)
              {     thePage.fillRect (round (xcor - width / 2),
                                    round (ycor - height / 2),
                                    round (width), round (height));
         }     //======================
         /** Pause the animation for wait milliseconds.  Made a class method
          *  so that an applet can pause an animation "between turtles". */
         public static void sleep (int wait)
         {     try
              {     Thread.sleep (wait);
              }catch (InterruptedException ex)
         }     //======================
         /** Create a Turtlet on a given Component at a given starting position.
          *  All Turtlets must be created from within the Component's paint()
          *  method or from a method called by it.  All Turtles live in
          *  the same world at any given time, so changing the page is analogous
          *  to spaceshipping the entire Turtle population to a new world. */
         public Turtlet (java.awt.Graphics page, double xstart, double ystart)
         {     if (page == null)
                   throw new NullPointerException ("You did not give a "
                                     + "world where turtles can live!");
              thePage = page;
              xcor = xstart;
              ycor = ystart;
         }     //======================
    // Turtle
    /*  Copy this file in its entirety to a file named Turtle.java.
    *  Compile the Turtlet class and then compile this class, before trying to
    *  compile any program that uses Turtles.
    *  This class draws to an Image object and lets the frame's paint method
    *  show the Image whenever the frame repaints itself. It is for
    *  Turtle commands that are given in or from a main application. */
    import java.awt.*;
    public class Turtle extends Turtlet
         private static TurtleWorld theWorld = null;
         /** Write words without changing the Turtle's state.  */
         public void say (String message)
         {     super.say (message);
              theWorld.repaint();
         }     //======================
         /** Make a circle of the given radius, Turtle at center. */
         public void swingAround (double radius)
         {     super.swingAround (radius);
              theWorld.repaint();
         }     //======================
         /** Fill a circle of the given radius, Turtle at center. */
         public void fillCircle (double radius)
         {     super.fillCircle (radius);
              theWorld.repaint();
         }     //======================
         /** Rotate left by left degrees; MOVE for forward steps.*/
         public Turtlet move (double left, double forward)
         {     return super.move (left, forward);
         }     //======================
         /** Rotate left by left degrees; PAINT for forward steps. */
         public Turtlet paint (double left, double forward)
         {     super.paint (left, forward);
              theWorld.repaint();
              return this;
         }     //======================
         /** Fill a rectangle of the given width and height, Turtle at center. */
         public void fillBox (double width, double height)
         {     super.fillBox (width, height);
              theWorld.repaint();
         }     //======================
         /** Create a turtle at the center of the default JFrame. */
         public Turtle()
         {     this (false, 760, 600);  // special case of the constructor below
         }     //======================
         /** If makeNewWorld is true, make an additional JFrame of the given
          *  width and height.  Create a turtle at the center of the JFrame. */
         public Turtle (boolean makeNewWorld, int width, int height)
         {     super (makePage (makeNewWorld, width, height),
                              width / 2, height / 2);
         }     //======================
         /** Only done as a separate method because super() has to be
          *  the first statement in the any constructor. */
         private static Graphics makePage (boolean makeNewWorld, int w, int h)
         {     if (theWorld == null || makeNewWorld)
                   theWorld = new TurtleWorld (w, h);
              return theWorld.getPage();
         }     //======================
    /** A TurtleWorld is a JFrame on which an Image object is drawn each time
    *  the JFrame is repainted.  Each Turtle draws on that Image object. */
    class TurtleWorld extends javax.swing.JFrame
         private static final int EDGE = 3, TOP = 30;  // around the JFrame
         private Image itsPicture;
         private Graphics itsPage;
         public TurtleWorld (int width, int height)
         {     super ("Turtle Drawings");  // set the title for the frame
              setDefaultCloseOperation (EXIT_ON_CLOSE); // no WindowListener
              setSize (width + 2 * EDGE, height + TOP + EDGE); 
              toFront();  // put this frame in front of the BlueJ window
              setVisible (true);  // cause a call to paint
              begin (width, height);
         }     //======================
         public void begin (int width, int height)
         {     itsPicture = new java.awt.image.BufferedImage (width, height,
                              java.awt.image.BufferedImage.TYPE_INT_RGB);
              itsPage = itsPicture.getGraphics();
              itsPage.setColor (Color.white);
              itsPage.fillRect (0, 0, width, height);
              itsPage.setColor (Color.black);
         }     //======================
         public Graphics getPage()
         {     return itsPage; // itsPicture.getGraphics(); => NO COLORS
         }     //======================
         public void paint (Graphics g)
         {     if (itsPicture != null)
                   g.drawImage (itsPicture, EDGE, TOP, this);
         }     //======================
    // hope that gives some clue to the problem... and thank you again.

  • Importing video help! Need Time and date to show up on screen...

    SOMEBODY HAS TO HAVE AN ANSWER!
    Okay, little background... I just got a new Mac book pro lab top. First time apple user. Difficult to learn, but learned fast. I am working with IMovie HD program, got the hang of it. I have a Cannon ZR50 camcorder, mini DVR tape. Camera has DV,S, USB, AV etc.. port outs. Hooked it up to lab top to import video to lab top to edit footage add sound etc... to later burn to DVD via IDVD program
    BTW: I used a DV to Firewire cable to load up footage.
    PROBLEM I AM HAVING. is when I'm importing my video to the computer, time and date stamp from my camcorder's screen does not show up on Mac screen. It gets lost when importing. How I view it on my camcorder (SHOWING TIME/DATE INFO ON FOOTAGE TAKEN) is how I would like to view it after importing it to lab top to later edit ad sound tracks etc... If I hook up my camcorder to a VHS or TV, to record on tape of footage taken, Time/Date stamp of footage shows up and records on tape with no problem.
    I spoke with a lot of people on this issue. Everyone refers me to someone else. I can't get an answer for something in my eyes is so simple. They all said " Why would you want the time and date stamp to show up on your footage anyway" Well I would like it to be that way. Topic got down to three things that might solve problem. 1. Need better video/editing software. 2. Need Digital Analog capture device. 3. Need new camcorder. I've been working on this problem for a day or so. It's getting rough for help. Any information on this problem would be great. If you need any more info on my issue please do not hesitate to Pm me. Thanks

    Hi SIZ4SK:
    Welcome to discussions!
    You can't do that with iMovie but you can with a bit of help from a third party...
    What you really need is this free plugin from TriX Software:
    DVFileDateCM
    http://www.trixsoftware.com/DVFileDateCM.html
    Let me know if this helps or not.
    Sue

  • Much trouble with imports - please help!

    Very frustrated here! When I put a CD into my computer drive, nothing happens at all. It's not recognised, not only in iTunes but in My Computer too. This has happened for a while. When, very occasionally, I find that the CD is recognised by iTunes only the first few seconds/minutes are recorded or the real time is overridden by something like 782:34:23 and the song doesn't play at all. I know others have had this problem too, but I just wanted to post my CD diagnostic in the desperate hope that anyone out there has a solution or suggestion.
    I have re-installed iTunes and suchlike but this doesn't help so I assume it's something clever and technical that I have to do...
    Anyway here's the diagnostic:
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Computer Corporation Dimension 2400
    iTunes 6.0.1.3
    CD Driver 2.0.4.3
    CD Driver DLL 2.0.3.2
    LowerFilters: PxHelp20 (2.0.0.0), drvmcdb (1.0.0.1), sscdbhk5 (1.0.0.1),
    UpperFilters: GEARAspiWDM (2.0.4.3),
    Video Driver: Intel(R) 82845G/GL/GE/PE/GV Graphics Controller\Intel(R) 82845G /GL/GE/PE/GV Controller
    Found aspi32 running.
    Thanks tons in advance.
    KW
    Dell   Windows XP  

    Toonz,
    Sorry it's taken a while to reply, haven't had access to my computer for a few days.
    I downloaded the iTunes you suggested, here are the CD diagnostics:
    Microsoft Windows XP Home Edition Service Pack 2 (Build 2600)
    Dell Computer Corporation Dimension 2400
    iTunes 6.0.2.23
    CD Driver 2.0.4.3
    CD Driver DLL 2.0.3.2
    LowerFilters: PxHelp20 (2.0.0.0), drvmcdb (1.0.0.1), sscdbhk5 (1.0.0.1),
    UpperFilters: GEARAspiWDM (2.0.4.3),
    Video Driver: Intel(R) 82845G/GL/GE/PE/GV Graphics Controller\Intel(R) 82845G /GL/GE/PE/GV Controller
    Found aspi32 running.
    IDE\DiskWDCWD400BB-75FRA0_____________________77.07W77, Bus Type ATA, Bus Address [0,0]
    IDE\CdRomSAMSUNGCDRW/DVD_SM-352F________________T902___, Bus Type ATA, Bus Address [0,0]
    If you have multiple drives on the same IDE or SCSI bus, these drives may interfere with each other.
    Some computers need an update to the ATA or IDE bus driver, or Intel chipset. If iTunes has problems recognizing CDs or hanging or crashing while importing or burning CDs, check the support site for the manufacturer of your computer or motherboard.
    Current user is administrator.
    D: SAMSUNG CDRW/DVD SM-352F, Rev T902
    Unclosed disc in the drive.
    Get drive speed succeeded.
    The drive CDR speeds are: 48.
    The drive CDRW speeds are: 48.
    Thanks so much.
    Kx

  • How do I import Eclipse Help project/pages?

    I have an Eclipse Help project with about 100 html topic pages that I created in Eclipse and organized in various folders. However, the editor in Eclipse that I am using is not very advanced and it's quite tedious to manage the help project and cannot easily create other help formats. I want to try RoboHelp 8 as the authoring environment and have it output Eclipse Help (which I hear it can do).
    However, I can't find a way to easily import my existing Eclipse Help pages and folder structure. Is there a way to do this without breaking anything (like images or css) or having to go to each page and do some fixing up?
    Ideally, I would like some kind of two-way transfer so I can share the project with others on my team using Eclipse to edit the topics; but I realize that may be too much to ask for.

    Peter, thank you for your reply.
    I went ahead and re-created the folder structure and imported the topic pages into each folder. This part seems to work fine. However, I have a few issues:
    1) When I double-click on the topic pages they open in Notepad rather than the built-in editor. If I right-click on a topic and choose Edit With Design View, that works, but is quite tedious to do for every page. I also notice that if I make a change to the page in design view and save it, from then on it opens in Design View.
    I see that the files that open in Design View have the following markup added:
    <meta name="generator" content="Adobe RoboHelp 8" />
    Is there a way to have these .html pages always open in Design View by default, at least for this project?
    2) I used the instructions here to create Eclipse Help: http://blogs.adobe.com/techcomm/2009/12/how_to_generate_eclipse_help_from_robohelp.html
    When I bring up the pages in Eclipse, the ones that I edited using the Design View seem OK (so far), however the ones that were imported from original Eclipse Help format now show this error when I try to view them:
    An error occured while processing the requested document:
    org.xml.sax.SAXParseException: Content is not allowed in prolog.
    at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(Unknown Source)
    at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(Unknown Source)
    at org.eclipse.help.internal.dynamic.DocumentReader.read(DocumentReader.java:56)
    at org.eclipse.help.internal.dynamic.XMLProcessor.process(XMLProcessor.java:49)
    at org.eclipse.help.internal.xhtml.DynamicXHTMLProcessor.process(DynamicXHTMLProcessor.java: 66)
    at org.eclipse.help.internal.webapp.servlet.DynamicXHTMLFilter$1.close(DynamicXHTMLFilter.ja va:81)
    at java.io.FilterOutputStream.close(Unknown Source)
    at org.eclipse.help.internal.webapp.servlet.FilterHTMLHeadAndBodyOutputStream.close(FilterHT MLHeadAndBodyOutputStream.java:311)
    Any idea why I am getting this error? I am using the EclipseHelp.jsx that came with RoboHelp 8.0.0.203 (incidentally, the "latest" script file pointed to in the link above actually has an older copyright date so it would not seem that it's the latest). Would solving #1 solve this issue?
    3) I set a default topic for my books, which works fine in Web Help. But when I try to view the book in Eclipse, it displays a Contents list instead of the default topic.
    Any idea how to fix this?
    Thanks in advance,
    Dan

  • IPhoto Importing Troubles Help

    Hi Everyone,
    So I import photos onto iPhoto from my Gopro and the last imports were there. I wasn't thinking and forgot to put them into an album so when I imported more from another camera they replaced the old photos in the last import folder. So now the new photos are there and the others have vanished. Confusing I know but if you can help or have ideas that would be great thanks!
    mrbush_

    Right  --  Last import is obviously the "last import" so each time you import it changes - that is simply a view of the last import and has nothing at all to do with the photos in your library - the photos can always be viewed as events or as photos (at the top of the source pane on the left of iPhoto under "Library"
    LN

  • Crash during CD import - please help

    When trying to import (Apple lossless in my case) iTunes crashes after a few songs quite randomly. This happens to all CDs I try. What a mess and how frustrating....
    Does anybody have an idea, what could be the problem?
    I'm running the latest mainboard chipset drivers and firmware for the DVD.
    Microsoft Windows XP Professional Service Pack 2 (Build 2600)
    System manufacturer System Product Name
    iTunes 6.0.1.3
    CD Treiber 2.0.4.3
    CD Treiber DLL 2.0.3.2
    UpperFilters: GEARAspiWDM (2.0.4.3),
    Videotreiber:NVIDIA GeForce 6600 GT\GeForce 6600 GT
    IDE\DiskST3300831AS____________________________3.02___, Bus Type ATA, Bus Address [2,0]
    IDE\DiskWDCWD4000YR-01PLB0____________________01.06A01, Bus Type ATA, Bus Address [0,0]
    SCSI\Disk___NVIDIA__STRIPE__138.49G, Bus Type SCSI, Bus Address [1,0]
    IDE\CdRomHL-DT-STDVDRAM_GSA-4082B_______________A208___, Bus Type ATA, Bus Address [0,0]
    Wenn Sie mehrere Laufwerke am gleichen IDE- oder SCSI-Bus angeschlossen haben, können diese sich gegenseitig stören.
    Einige Computer benötigen eine Aktualisierung der ATA- oder IDE-Bus-Treiber oder des Chipsatzes. Falls iTunes CDs nicht erkennt oder beim Importieren/Brennen abstürzt, suchen Sie Infos auf der Web-Site des Computer- oder Motherboard-Herstellers.
    Aktueller Benutzer ist Administrator
    F: HL-DT-ST DVDRAM GSA-4082B, Rev A208
    Audio-CD im Laufwerk
    10 Titel auf der CD gefunden, Spieldauer: 66:36 auf Audio-CD
    Titel 1, Startzeit: 00:02:32
    Titel 2, Startzeit: 04:14:12
    Titel 3, Startzeit: 11:54:25
    Titel 4, Startzeit: 22:53:70
    Titel 5, Startzeit: 33:30:50
    Titel 6, Startzeit: 41:45:65
    Titel 7, Startzeit: 45:48:62
    Titel 8, Startzeit: 48:23:52
    Titel 9, Startzeit: 54:45:40
    Titel 10, Startzeit: 59:58:47
    Audio-CD erfolgreich gelesen
    Laufwerksgeschwindigkeit erfolgreich erkannt
    Die CDR-Geschwindigkeiten des Laufwerks sind: 4 8 16 24
    Die CDRW-Geschwindigkeiten des Laufwerks sind: 4
    Die DVDR-Geschwindigkeiten des Laufwerks sind: 4
    Die DVDRW-Geschwindigkeiten des Laufwerks sind: 4

    when i try to import new cd's to itunes ...the program crashes...the only new thing i've changed is upgrade the itunes program from 5 to 6....any help??

  • Subtitle import Problem, HELP!

    Thanks in advance for the help. Here is the problem. I am finishing a DVD project today complete with 6 different subtitle languages. I have been importing files for weeks with no problem. But today, for whatever reason, when I import a .son file, two files that are the new correct. tiff’s are imported as the wrong old .tiff. I have rid my computer of any .tiff with the same name, yet it still shows up wrong. Is there any way to purge, cache, parse subtitle files? It is referencing an old wrong one, I just don’t know how. Any thoughts please help.

    Hi Brian,
    Yes. What DVDSP does is turn these subtitles into mpegs and places them within the project itself.
    If you open the project by "Show Package Contents" from the finder. navigate your way through to Resources/Render Data and the files are in there. Just delete the files (not the folder) and you should be able to open up again and force a new build.
    Let me know if you have any other problems

  • Importing Video help...

    I was importing video and noticed that once imported i have no sound?? Why is there no sound? Please help...i thought this would be easy...
    thanks,
    damien

    Hello Kidboy,
    How do I fix this problem??
    You'll need to convert the MPEG video to DV format.
    Find some more info in Dan Slagle's Unofficial iMovie FAQ: Using Mpeg (DVD) footage
    http://danslagle.com/mac/iMovie/tips_tricks/6010.shtml
    and also Matti Haveri's website: How can I edit MPEG or convert DVD or MPEG to DV
    http://www.sjoki.uta.fi/%7Eshmhav/SVCDon_a_Macintosh.html#edit_convertMPEG
    Tools:
    MPEG StreamClip:
    http://www.apple.com/downloads/macosx/video/mpegstreamclip.html
    Apple MPEG2 PlayBack:
    http://www.apple.com/quicktime/mpeg2/
    DVDxDV
    http://www.dvdxdv.com/
    hope this helps
    mish

  • Changes in application after import- Urgent help!!

    Hi All,
    We have a QA HTML DB instance and Production HTML DB instance. When we export applications from the QA instance and import it on to the production instance we are seeing some changes in the application. Some of the changes are
    1. A popup lov is not getting initialized. Getting the error "Unable to initialize query". The same popup LOV is working in QA instance. Also, if I run the query of the popup LOV in the SQL Command processor of the production instance I am able to see the records.
    2. A "blank" entry is getting inserted in the select list. I have not enabled to show NULL value in the attributes of the select list. I cannot see this "blank" entry in QA.
    3. Checkboxes in a region are re aligned.
    The only difference between the QA and production instance is the characterset. The QA is on WE8ISO8859P1 NLS_CHARACTERSET and production is on AL32UTF8 NLS_CHARACTERSET.
    When we export the application we see that it is exported in WE8ISO8859P1, so when we import we have tried both WE8ISO8859P1 and AL32UTF8. But we are still seeing these changes.
    Is this change related to the characterset issue? or something else? We cannot change the characterset of the QA instance to AL32UTF8 as of now and if its is character set issue is there a work around?
    Any help is appreciated.
    Thanks,
    Swaroop

    Thanks for your reply.
    Yes, both databases are running the same version of HTML DB i.e 2.0.0.00.49
    Oracle versions are different, QA -10.1.0.3.0, Production - 10.2.0.1.0
    The database objects are similar, the schema was exported from QA database and imported on to production database. Data is also same.
    -Swaroop

  • Sudden Change in CD Importing - Please Help!

    Hi - I am new to iTunes, iPods and my new laptop. I just started adding CDs to my library last week and was very pleased with the process. The songs were downloading quickly and I was able to play other songs during the process with no interference.
    I continued to add songs this morning then all of a sudden right in the middle of an import my download time dramatically slowed AND now when I try to play a song during importing it's very slow and shaky. I have not changed anything with my system, currently am not running any other programs (except for this window) and have restarted several times but nothing changes. Can anyone out there help me understand what would cause this annoying change with my system? Is there something I can do to get things back to where they were?
    Many thanks,
    Molly

    Hi - I am new to iTunes, iPods and my new laptop. I just started adding CDs to my library last week and was very pleased with the process. The songs were downloading quickly and I was able to play other songs during the process with no interference.
    I continued to add songs this morning then all of a sudden right in the middle of an import my download time dramatically slowed AND now when I try to play a song during importing it's very slow and shaky. I have not changed anything with my system, currently am not running any other programs (except for this window) and have restarted several times but nothing changes. Can anyone out there help me understand what would cause this annoying change with my system? Is there something I can do to get things back to where they were?
    Many thanks,
    Molly

  • CMS Administrator Import Wizard Help

    Is there a way to grant privileges/permissions to a user so that the user can use the import wizard to migrate objects, LOV, reports with dynamic cascading parameters, etc? I am the administrator and one of our agencies is looking to use our enterprise servers, but they want/need to be able to use the import wizard without having access to other agency's objects.

    Bill,
      You can find the various guides at
    http://help.sap.com/content/bobj/overview/index.htm
      Select Business Objects Enterprise in the first dropdown  and Business Objects Enterprise 3 in the second and you should find the installation and admin guides.
    Regards,
    Tony

Maybe you are looking for

  • Side by Side error on Windows Server 2008 R2 SP1

    Hello! I want to install SAP 4.7 Ex2 on windows Server 2008 R2 Sp1. I installed java 1.4.2.24 and oracle 11g before. Now i tried to install the 4.7 system on the server. But in step "create or reregister sap services" i get an error. The sap log show

  • Can't open photos - needs MIME plug-in?

    I'm using Safari 2.0.4 and am trying to view photos on a website, but have encountered this error message: +The page "Browser Express" has content of MIME type "application/x-oleobject". Because you don't have a plug-in installed for this MIME type,

  • Port-in Credit

    Hi, I started a new plan with a new phone from Costco last night and do the port-in after I got home. So far, I have not received any email or text whether I will be getting the port-in credit. Is there any way I can confirm this? Thanks.

  • Display picture wont update or change Q5

    I'm currently using bbm on my Q5 and for some reason my display picture won't change. And another thing I have bbm on my phone but when I go to app world and view the bbm app it says' this application isn't available for ur device" how is that possib

  • Getting error in using URL View in Task Flow

    Hi, Using Jdeveloper: 11.1.1.3.0 What I am trying to achieve is that an ADF application can be bookmarked, and when it is open without a valid EBS login context, it should redirect it to the EBS login screen. In method initMainPage , I have code that