Exporting Widescreen - It shouldn't be this difficult!

Hello all,
I really hope someone can help me here, I'm a long-term user of Premiere Pro yet I recently upgraded to CS4 with the new media encoder, and simple operations now seem impossible, in this scenerio - exporting a widescreen video...in widescreen!
I have a video, about 1 minute long. Shot in widescreen. Edited in a Premiere widescreen project and for the export settings: Mov and/or Mpeg and/or WMV, and the DV PAL Widescreen Preset - which then gives me the (unchangeable) frame size of 720x 576. I choose Square Pixels for the ratio selection and export. I get a widescreen video plus letterboxing to give me a 4:3 screen. Seeing as i can't change the frame size, I changed the pixels to Widescreen, and it gives me a 4:3 video without letterboxing, thereby distorting it horribley. I have tried changing everything! Different codecs give me the correct size but a file hundreds and hundreds of MB big. Seriously, it shouldn't be this hard!!
Please someone, talk some sense!
Ryan

The other formats won't let me change the frame size from 720x576.
If you're attempting to go from a DV source (judging by the screenshot you posted, you are) to a DV output (which you are if you're going to MS DV AVI or to QuickTime DV MOV), you have no other option than to encode at 720x576, period. That's what DV is (in PALLand, anyway; in NTSCVille, it's 720x480). It doesn't matter if you're coming from or going to a standard 4:3 aspect ratio or a widescreen 16:9 aspect ratio, as long as you're using a DV codec your files will alwaysalwaysalways be 720x576. The differentiation between the display aspect ratio or DAR (4:3 or 16:9), therefore, comes from the pixel aspect ratio, or PAR--in other words, what shape are the pixels? For standard DV sources, the pixels' width-to-height ratio is smaller; for widescreen DV sources, the pixels' width-to-height ratio is larger. Note that these are relative, and not absolute, as I'm speaking in generalities about DV--NTSC DV and PAL DV PARs differ. As Jim pointed out, some programs are able to properly read the PAR written into a DV (or other video) file, while some simply read the raw pixel count, which in your case is 720x576. That's why it looks weird and not what you want when played back--the footage is all there, but not drawn as you'd like.
The only real safe bet, in my mind, is to use square pixels when encoding for computer playback, especially when dealing with less-than-technically-savvy clients. Computers use square pixels, and that's what they like. Encode using square pixels for web playback and local playback formats (like WMV, FLV, H.264, some QT flavors), and you'll avoid the weird stretchies. This does, of course, involve some small amount of computation on your part to determine what is the proper pixel count when using square pixels, but in the case of 16:9 widescreen display, it's usually just a case of dividing your height by 9, and multiplying that result by 16 to get the width. Punch those values into AME, and set your pixel aspect ratio to Square Pixels, and you should be in good shape... pun slightly intended.

Similar Messages

  • It can't (shouldn't) be this difficult...

    I've been using a simple home network with my G4 iGloo and a G4 iBook. The iGloo connects to an Ethernet Switch connected to an Airport Extreme which connects to the cable modem. iBook has an Airport card and is used to administer the AEBS. Everything has been great. I even managed to set up both Macs with fixed IP numbers which allows me to have aliases on each Desktop which will accept drag-n-drop file transfers. Now, even if the power fails and the AEBS loses power, it doesn't reassign IP addresses to the Macs.
    OK! Everything is running fine...but I agreed to demo setting up an Airport Network for our User Group tomorrow night! No problem, this stuff is a snap! Or so I thought.
    New Macs to connect to the existing network: G4 mini and a new Intel mini.
    All Macs are using 10.4.10 except the iBook which is still at 10.4.8.
    All Macs can connect to the Internet. All display the other Macs in the "Browse" window (and also in the "Network" Sidebar item in a Finder window).
    From the Intel mini:
    I can connect to my iGloo (wireless to the Airport, Ethernet to the iGloo). I can even connect to a FireWire drive attached to the iGloo and any of the three partitions on the iGloo. Works just like it should!
    I CANNOT connect to the G4 mini (same basic route as above).
    I CANNOT connect to the iBook (wireless to wireless).
    In the last two cases I get the standard, "Unknown user, incorrect password, or login is disabled" dialog.
    From the G4 mini:
    I CANNOT connect to any other Mac. Same standard dialog as above.
    Once again, this Mac DOES connect to the Internet.
    From the iGloo:
    I get the same "Unknown user..." dialog for the G4 mini.
    I can, as stated earlier, connect to either the admin user or the Hard Drive of the iBook.
    The Intel mini presents an "FTP Authentication" dialog(?). What's THAT about?
    From the iBook:
    Connection to the iGloo is perfect.
    It CANNOT connect to either the G4 or the Intel mini.
    Both the minis have "Using:" DHCP. All the machines are withing 10 feet of each other. I found one bad Ethernet cable.
    How many permutations will it take to discover the right combination of settings! Need to have this working within 16 hours, of course! "The difficult will be done immediately, the impossible will take slightly longer!"
    Sincere thanks to anyone who wants to tackle this! 8-)

    As an indication of my frustration level, I clicked on the "Mark as answered" link thinking it said "Mark has answered"! Doh! Stupid me! Again!

  • SSL shouldn't be this difficult

    Hello,
    First off, SSL is NOT really difficult... it is that I am just frustrated with the "service provider" that I have to connect to. They are of no help what so ever when it comes to trying to help me figure out what is going on with the SSL connection.
    OK, all the service provider has "provided" me is their address and port to connect to... which is for example https://xxx.yyy.zzz 5000
    They say that I need to connect into this server on this port in order to send and receive secure messages... So with that I put this little test program together...
    ----------8<----------
    import java.io.*;
    import java.net.*;
    import java.security.*;
    import javax.net.*;
    import javax.net.ssl.*;
    public class SSLSocketClient
    public static void main(String[] args)
    SSLSocket s = null;
    PrintStream out = System.out;
    out.println("\nTesting socket factory with SSLContext:");
    try
    SSLContext sc = SSLContext.getInstance("SSLv3");
    KeyManagerFactory kmf = KeyManagerFactory.getInstance("SunX509");
    String ksName = "test.keystore";
    char ksPass[] = "password".toCharArray();
    char ctPass[] = "password".toCharArray();
    KeyStore ks = KeyStore.getInstance("JKS");
    ks.load(new FileInputStream(ksName), ksPass);
    // Generating KeyManager list
    kmf.init(ks,ctPass);
    KeyManager[] kmList = kmf.getKeyManagers();
    // Generating SSLSocketFactory
    sc.init(kmList, null, null);
    SSLSocketFactory sf = sc.getSocketFactory();
    // Generating SSLSocket
    s = (SSLSocket)sf.createSocket("ssltest.tnsi.com", 5004);
    s.startHandshake();
    InputStream inputstream = s.getInputStream();
    InputStreamReader inputstreamreader = new InputStreamReader(inputstream);
    BufferedReader bufferedreader = new BufferedReader(inputstreamreader);
    OutputStream outputstream = s.getOutputStream();
    OutputStreamWriter outputstreamwriter = new OutputStreamWriter(outputstream);
    BufferedWriter bufferedwriter = new BufferedWriter(outputstreamwriter);
    char[] message = {0x48, 0x45, 0x4C, 0x4C, 0x4F};
    bufferedwriter.write(message, 0, message.length);
    bufferedwriter.newLine();
    bufferedwriter.flush();
    String string;
    int x;
    while ((x = bufferedreader.read()) != -1)
    System.out.println(x);
    catch (Exception e)
    System.err.println(e.toString());
    finally
    try
    if (s != null)
    s.close();
    catch (Exception e)
    ----------8<----------
    I have created a keystore with my client key pair in it.
    When I run the program I receive no errors or exceptions. All I receive is 5 ENQs and then the program exits...
    My question is, since I have not received an exception, can I assume that I have actually connected to the server? They will not tell me if I have connected or not...
    Thanks...

    If you managed to send and receive data you have negotiated the SSL handshake and made the connection.
    After you do that, get the SSLSession from the SSLSocket and have a look at the various things it gives you, such as the peer certiificates and peer principal. This stuff comes from the server.
    It's interesting that you didn't need to define a truststore. Try it without the keystore too, to see if they are doing client authentication. If it succeeds without the keystore, they aren't.

  • Live stream to android devices? shouldn't be this difficult.

    Why doesn't Adobe post a simple tutorial on how to stream live video from FMS 4.5 to Android device? The developer center has a tutorial series that hasn't been updated in years. The Part 8: Streaming to Android Devices (to Come) hasn't been updated in 1.5 years. The server is useless if we can't watch video on Android devices. Surely someone out there has successfully streamed live video to an Android device and can explain how to do it?
    Do we need to create an Android Air App to accomplish this?
    Thanks for any help!
    Dave

    As an avid Wowza developer/integrator/consultant (as well as the occasional AMS work), I concur with JayCharles on all of his assertions. The transcoder is completely optional, and you can actually make your own Wowza transcoder module with FFmpeg if the Transcoder AddOn costs are really too steep for deployment.
    Having said that, my current solution for live streaming to Android with an off-the-shelf (OTS) player is JW Player, and setting its fallback property to false. It looks something like this:
    <div id="videoPlayer">
         <!-- Code for non-supported JW Player case. JW Player 6 will not show HLS source on Android. -->
         <video src="http://media_server/app_name/_definst_/mp4:stream_ref/playlist.m3u8" controls ></video>
         <p>Video not playing? <a href="rtsp://media_server/app_name/_definst_/mp4:stream_ref">Click this link to play in an external media player.</a></p>
    </div>
    <script type="text/javascript">
    jwplayer("videoPlayer").setup({
                                                                playlist: [
                                                                                    sources: [
                                                                                                        file: "rtmp://media_server/appname/_definst_/mp4:streamname"
                                                                                                        file: "http://media_server/appname/_definst_/mp4:streamname/playlist.m3u8"
                                                                                    title: "My Sample Live Stream"
                                                                height: 180,
                                                                primary: "html5",
                                                                autostart: false,
                                                                width: 320,
                                                                fallback: false
    </script>
    HTH.

  • CS4 Exporting widescreen AVI or Quicktime problems...

    Hi.
    Ive been pulling my hair out with this one for a long time and can't seem to get anywhere with it despite searching the net for an anwer that works for me.
    I simply want to export a short video as a PAL widescreen AVI or Quicktime movie, I really don't mind which.
    My problem is that no matter what settings I try, the video either comes out slightly stretched with black bars to the left and right (below left) or reduced in size rather than fullscreen (below right).
    The images below are from VLC player set to fullscreen viewing. I thought it might be an isue with VLC but I get the same problem when I try it with Quicktime player and when I uploaded the final video to the net...  http://www.youtube.com/watch?v=4RZuhsrM6tY
    The settings that got me the above results are:
    Format: Microsoft AVI or Quicktime
    Preset: Pal DV Widescreen
    Codec: DV Pal or H.264
    Width and Height: 720 x 576 (greyed out and locked, unless using H.264 Codec)
    I've tried interprating my footage to conform to the pixel aspect ratio of  D1/DV PAL Widescrren 16:9 (1:4587)  which helped  but the image is still not fullscreen if you see what I mean?
    If anyone can tell me what settings I should be using I would be eternally greatful because I'm going to lose my mind if I don't figure it out soon. Surely it can't be that difficult or unusual export format!?
    Thanks for any help anyone can offer.
    Stuart.

    Jim Simon wrote:
    The problem is with the players.  You need to tell them to unsquish the video manually.  They don't do it automatically.
    YouTube needs a square pixel export.  You would not use this export for upload to YouTube.  You'd export a separate file specifically for that.
    how do I manually tell the players to do that?
    I am struggling with the same issue: DV PAL is always 4:3  720x576 - so where does the "PAL DV Widescreen" export setting (PAR parameter) come into play?
    DV PAL 720x576 16:9 letterbox source footage was captured at PAR 1.0940
    sequence is same PAR
    what should be my export settings for:
    1. creating a file to be displayed correctly on a flat screen TV monitor using a DVD standard player
    2. creating a file to be  displayed correctly on a computer monitor using a Windows OS / players
    3. creating a file to be uploaded on youtube (I got that exported and uploaded and  displayed alright by tagging it yt:crop=16:9). I think I exported it as Sq pixel PAR
    4. Encore settings for creating a DVD with these videos to be  displayed on both TV monitor and PC monitor.
    All  export settings I tested the file with produced a lightly 'fattened' image when played back on my mac using QT, exept the Sq pixel export which looks perfect on my mac. No Sq pixel exported files show in QT player Info window: "720x576 (788x576)" - why is that?
    Thank you

  • Exporting widescreen DV project to Media Encoder Fails

    This is my first attempt at exporting a video using CS4's media encoder, and when I try, the encoder app seems to not be able to "find" or load the Premiere CS4 sequence.  It seems to fail after a few minutes, during which the status of the job is "Waiting" and at the bottom it says "Loading xxxxx.prproj".
    Any thoughts?  I'm on an i5 iMac with the CS4 Production suite installed.
    Here's the error it gives:
    - Source File: /Users/user/Library/Caches/TemporaryItems/Wedding.prproj
    - Output File: /Users/user/Video/Projects/Wedding/DVD/_Wedding.mpg
    - Preset Used: Export Widescreen DVD 7Mbps CBR
    - Video:
    - Audio:
    - Bitrate:
    - Encoding Time: 00:12:19
    Sun Dec 20 15:56:11 2009 : Encoding Failed
    Could not read from the source. Please check if it has moved or been deleted.

    FIXED!
    Thanks to some points in this thread, I have solved my problem.
    It was the KNOLL LIGHT FACTORY plug-in.  I removed it, and the Adobe Media Encoder now works on my system.  I assume that DYNAMIC LINKING between the CS4 apps also now works, but have yet to test that.
    This also explains why my CS4 suite works on my MacBook Pro; I never installed KLF on my laptop.
    Now I need to tell RED GIANT SOFTWARE about this problem, and either get a solution from them, or a refund.
    Thanks.  You can add this solution to your collective repertoires in case a future OSX user encounters this exact problem.

  • How to export widescreen (1024x768) slideshow

    Help! After creating my widescreen slideshow (1024x768), I found the only export option is 640x480. If this issue has been addressed previously, forgive me, as the search option on the server isn't working.

    I figured it out. You need to "share" the slideshow to iDVD in order to export it in a widescreen format.

  • UEK2 and ASM/ACFS shouldn't be so difficult

    We are running Oracle 11g Grid Infrastructure (GI) on Oracle Linux 5 x86_64. To pass security audits, we must apply the latest patches every quarter. This includes both Oracle Linux patches and Oracle database patches. Linux patches and Oracle database patches are applied in the same maintenance window.
    We utilize the ACFS feature of 11g GI. ACFS requires a kernel module to match the installed kernel so we must carefully choose our kernel to match what ACFS supports. It has been 10 months since the release of UEK2 and yet the January GI PSU (GI 11.2.0.3.5 PSU Patch 14727347), still does not include support for UEK2. Lenz Grimmer stated a nine month grace period for UEK on Oracle's Linux Blog dated Mar 13 2012. Here is the quote.
    +"Now that the Unbreakable Enterprise Kernel Release 2 has been released, we will continue to provide support for Release 1 of the Unbreakable Enterprise Kernel (2.6.32) in the form of critical bug fixes and security errata for another 9 months. However, new hardware enablement (e.g. by providing device driver updates) will now only be made available through the quarterly updates of Unbreakable Enterprise Kernel Release 2 on the Unbreakable Linux Network. During this grace period, we encourage all customers to switch to Release 2."+
    I have reviewed My Oracle Support article ID 1369107.1 - ACFS Supported On OS Platforms.
    It looks like the only way to run ACFS on UEK2 is to utilize the October GI PSU (14275572) and then apply Patch 12983005 on top of it to get UEK2 support.
    I don't want to be a quarter behind on my patch levels and also have an extra patch to apply just because I want to use ACFS with UEK2. Ultimately I just want to run yum update along with the latest database PSU once a quarter.
    What is the best way to express my dissatisfaction with this scenario and encourage the database team to start supporting UEK2 directly via the GI PSU quarterly process?

    Thanks Avi. I've re-posted in the High Availability » Automatic Storage Management forum.
    UEK2 and ASM/ACFS shouldn't be so difficult
    Edited by: rukbat on Feb 2, 2013 5:09 AM
    Link to that new thread added by moderator.
    That helps future readers follow the topic "wherever it may travel".

  • Connect iPod touch 2G to Reciever using RCA's? It cannot be this difficult?

    Hello!
    Need to connect iPod touch 2G to my reciever using RCA's?
    But +I do not want to use the headphone jack....+ (I heard I will get higher sound quality using the bottom multi-pin connector on the bottom of the touch going to a left and right RCA's) +I have uncompressed (AIFF) files on my iPod touch and want the best sound quality possible.+
    I found a couple companies that make these cables with one being the Cables To Go 4-Feet RCA Stereo to Dock Connector Cable for iPod and also the Nyko Stereo Link for iPod, but from reading the reviews on Amazon neither of them will work with the Touch 2g (or the iPhone for that matter).
    I am also open to a simple dock of some sort that would provide me RCA outputs. Seems as if Apples universal dock would be great but it seems to have NO RCA outputs on the back of it.
    If anyone has a solution to this I would be very very happy!
    +I have looked high and low for a solution for this seemingly simple task.+
    All I want is a connector that goes from the bottom of the touch to 2 RCA's so I can input this into
    my home stereo so I can listen to my ripped CD's in high quality. A dock would also work too! I do not need charging or anything fancy....
    (already have try the Tekkeon NavDock for iPod which was cool because I could watch my videos on tv from my touch but i dont need that)
    +*just looking for something simple that works with the iPod Touch 2G.*+
    *It cannot be this difficult?*
    thanks, techo

    As I stated above, the docking connector is not a "true" line-out, it does have a volume-tap so the volume control will work. It probably is somewhat cleaner than the headphone out (haven't measured it), but it is not going to be a significant difference as any improvement you get from the connector is severely limited by the DAC in the iPod.
    You get no improvement in sound from using the pins on the 30 pin connector versus a 3.5 mm jack. If you buy a Universal Dock it is passing the signal from the 30 pin dock to a 3.5mm female jack, then you use the 3.5mm to RCA. Going directly from the dock connector to RCA will not improve the sound, the 3.5mm connector is not inferior in itself to the RCA connectors.
    The A/V kit will get you the ability to watch your videos on your TV and output the stereo signal to your receiver. If you want even better sound for your music, get an Apple TV and use the HDMI cable to transfer the video and sound:
    http://store.apple.com/us/browse/home/shopipod/family/appletv?mco=MTE4MTU

  • Trying to restore my iPhone 5 from a backup but its says that it will take over 24 hours to finish. Is there something I can try to do to speed this up? I feel like it shouldn't take this long

    So I have been restoring my iPhone5 from a backup for about 3 hours now however iTunes still says that it is going to take over 24 hours to complete the restore process and the progress bar hasn't moved much at all. I feel like something has gone wrong somehow and it shouldn't take this long to complete. Is there something I can do to speed up this process or do I just have to try to wait it out? I'm scared to just unplug my phone and try again since it might screw something up.

    if u unplug then that could put ur device into recovery mode. i would wait

  • Export to Excel in Discoverer - Is this a Bug ???

    Hi all, thanks for all your helping and sharing thoughts.
    I have one issue when exporting to EXcel:-
    If you create a calculated field in Discoverer and 1 or more of the values used in the calculation has a NULL value, Discoverer will show a NULL value for the calculated field, which is correct. However when the report is exported to Excel, the calculation for this field is done as if the NULL is a zero causing the calculation to be incorrect. For example:
    Ordered_Qty = 20,487
    Contract_Amount = NULL
    Calculation for new field 'Contract_amt_Remaining' is Contract_Amount - Ordered_ Qty = NULL (since you can not subtract something from nothing , ie NULL - 20,487= NULL) this is fine.
    When the new field is exported to Excel the value shows -20,487 as if the Contract_Amt = 0 and not NULL, actually it supposed to show NULL, I don't know why its happening like this.
    can anyone help me on this, that would be greatly appreciated.
    Thanks in advance,
    skat

    Hi puppethead,
    Thanks for your response,
    Here what I am asking is, calculation working fine in Discoverer Plus lik the difference between 2 items, when it is null ie NULL - 3435= NULL this is working well and good in Disc PLUS, but when we export that worksheet to Excel it is giving as ie NULL-3435 = -3435 instead of NULL.
    so you guys asking me to use CASE statement in Calculation, but this is not with our calculation part right in Disco Plus, coz we are getting correct result, only when we exporting to Excel getting incorrect value thats it.
    Also i tried that CASE statement in calculation, saying syntax error, is that right syntax or not, i used as it is from this post.
    Can you make sure that CASE statement is right or not in the above post, do you want me change anything over there, coz I am getting syntax Error.
    Thanks again and for your helping.
    --skat                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • I can not export photos onto DVD. After I click export, close iPhoto, click Finder, At this point I can't find the file to burn. (copy to be used on Windows) Sorry for the lame question....new to mac

    I can not export photos onto DVD. After I click export, close iPhoto, click Finder, At this point I can't find the file to burn. (copy to be used on Windows) Sorry for the lame question....new to mac

    So it sounds like you are trying to burn a DVD with photos on it so the photos can be either transferred to or displayed on a Windows PC, is that correct?
    For the purposes of this I am going to assume you are using iPhoto '11.
    Gather the photos you want to burn to DVD in one album in iPhoto. This is not absolutely necessary but it sure makes things easier for me.
    Select that album, then go to the File menu and select Export...
    In the dialog that shows up, select the File Export tab. Select the setting you want to use for export. Click the Export button.
    Another dialog will show up. Set the location to Desktop and click the New Folder button. Name the folder something nice and descriptive and click the Create button.
    Click the OK button. Quit iPhoto as the rest of this work will be done in the Finder.
    You will now have a folder on your desktop with that nice descriptive name. Find it and select it. Go to the File menu and from it select Burn "Descriptive folder name" to Disc...
    Insert a blank DVD when prompted.
    Let the finder complete the work and eject the disc afterwards.
    That's it. Best of luck.

  • I get hangs using plug-ins (NIK), and can't export (hangs/crashes). Anyone experiencing this?

    Updated Aperture today (3.4.3) running 10.8.2. Now I get hangs using plug-ins (NIK), and can't export (hangs/crashes). Anyone experiencing this?

    Andrew,
    In general, I've found the Nik plug-ins to be the least problematic of all that I use. Unfortunately you haven't provided enough information so that help can be focused on your problem. So here are some of the standard steps to take.
    1. Make sure you are running Nik's latest versions. There were earlier ones that didn't work properly with ML.
    2. Which plug-ings are the problem?
    3. Have you tried the repair/rebuild option on your Aperture database? Often what appears to be problems with      a 3rd party item actually stem from some sort of fault in the database.
    4. If you're really stuck do the following steps: A. Delete the Nik plug-ings. B. Repair/rebuild the database. C.      Download Nik's latest versions. D. Reinstall. E. Test.
    This is a generic problem solving approach that fixes many things. Also, you should examine if it is a particularly type of file or set of photos or something specific in the images you are working on. A corrupt image, for example, can produce really weird things on occasion.
    Hopefully some of this is useful. If not, more detail is needed.
    Robert

  • IMovie for my iPad and iPhone will not export movies how do I fix this?

    iMovie for my iPad and iPhone will not export movies how do I fix this?

    Same here. Have exported a handful of movies before..faced this issue for the first time a few days ago. What footage are you trying to edit and export? (E.g. Shot with camera app, other social media apps like Snapchat, Vine, Instagram?)
    I did some troubleshooting..
    I was putting together all saved videos from Snapchat.. no luck. Export screen comes up, but progress bar doesn't move.
    Mixed some footage in there shot with actual iPhone camera app.. no luck.
    Removed all Snapchat footage.. it worked straight away.
    BUT ... it would make sense if I didn't just compile a bunch of Snapchat vids a few weeks ago and export them just fine?
    So it's something to do with the actual footage I assume?

  • Will not export photo. pop up says Some export operations were not performed. This file could not be opened(1). Also when I try to add a key word to ohoto the screen keyboard opens and I do not have a touch screen monitor.I have uninstalled LR6 and re-ins

    will not export photo. pop up says Some export operations were not performed. This file could not be opened(1). Also when I try to add a key word to photo
    the screen keyboard opens and I do not have a touch screen monitor.I have uninstalled LR6 and re-installed and it still does the same thing??????

    <moved from Downloading, Installing, Setting Up to Photoshop Lightroom>

Maybe you are looking for

  • How to restore itunes music and playlists but run from external HD?

    Hi all, I recently upgraded my macbook from Tiger to Snow Lepoard.  I backed up my entire HD onto my exteral harddrive and fromated my HD and rebooted with Snow Lepoard.  Is it possible to restore itunes to exactly how it used to be i.e. playlists et

  • Excise details not maintained for import vendor

    Dear All, We have upgraded from 4.7 to 6.0 while doing import scenario we have error to maintain excise details for import vendor. Whereas we are not maintaining any excise details fro import vendor. Please guide me for above problem. Also I think no

  • Std 9.0 + Access 2007 + network connection, PDFMaker not working anymore

    Hello, when i try to create a PDF file from an Access report, it isn't working anymore when i have a network connection. It worked for months, but yesterday Access 2007 crashed and it asked to deactivate the COM Add-In from PDFMaker and my Co-Worker

  • Jumpy Mouse Behavior

    As of late, I have been having problems with the mouse behaving erratically. Using either a Mighty Mouse or the trackpad, the pointer jumps in erratic, random locations. It subsides after about 30 minutes. I realized this was happening usually after

  • Can I make dll with cpp files?

    Can anyone tell me whether I can make dll from a *.cpp file and call it from the call library function node in LV? I am getting this doubt bcoz when I right the Call Librarry function node, the calling convention is C and not C++. Thanx & Regards, Sr