Video Frame as Image - Help

Hello,
I am having some serious problems in trying to get this working
so if u have any idea to get it working please help.
Aim : I need screen shots of a movie, what that means is I need certain frames of the movie as images. Say for example, the first frame, the 20th frame, and the 60the frame, ( eg for a 100 frame movie)
I have been breaking my head with FramePositioningControl and FrameGrabbingControl it keep returning null :(
I need this to work for all types of movies that i can play with JMF Player. So please tell me if there is any way to get a particular frame from a movie as an image.
I have looked at vid2jpg.zip and have no clue how to use it.
Thanks in advance.

Hi..
I need to play a video frame by frame. I dont need to extract the frames as images. When I run seek.java with an mpg file, it gives the following output.
Total # of video frames in the movies: 0
Step forward 1 frame.
Current frame: 0
Step forward 1 frame.
Current frame: 0
Step forward 1 frame.
Current frame: 0
Step forward 1 frame.
Current frame: 0
Step forward 1 frame.
Current frame: 0 .......so on
I am not understanding what is the problem. It is neither working with avi files. Please help me.
pln

Similar Messages

  • CS4 importing video frames to layers help ; no preview only white blank frames

    everytime i import video frames to layers ,, i cant see any preview , theirs no images in the farmes,, all i can see is white blank frames

    You simply chose a file which is encoded with an unsuitable CoDec. Export/ Convert the file in an external tool first.
    Mylenium

  • PS CS3 - import video frames into layers help

    I'm trying to import an avi file into PS CS3 using the 'import video frames into layers' tool, and I had 3ivx trial but it expired and now it leaves a watermark on all the layers. Anyone know of a free alternative?

    Not really. That's just how DivX Pro works.
    Mylenium

  • Poor quality image with doing videos with photos/images HELP!

    Hello,
    I bought Adobe Premiere Element to make videos with pictures. When I do the video, the quality of my photos is good. When I save the video on my computer or I download it on youtube (example) the quality of my photos is extremely poor. Why? Does anyone can help me? Thank you!

    What Project Preset did you choose at New Project? In the case of Video, composed of Still Images ONLY, you would set that to your desired delivery specs. Not so, if you are also using Video.  I tried several types of parameters. Some parameters give poor quality when I upload it to Youtube (for example) and others in the design of video and upload to YouTube. So which settings should I use for photos only ?
    This sounds like you are talking about the Export/Share settings for output to YouTube.
    What I was asking is what did you start off with, when you were at New Project?
    If you are doing an SD Project, you will have either 720 x 480 (NTSC), or 720 x 576 (PAL) pixels in the Project's Frame Size. If that is what you want, then I would Scale your camera original Stills to 640 x 480 (for NTSC), as you have Square Pixels, and the Project will have either 0.9 for NTSC Standard, or 1.21 for NTSC Widescreen).
    PrE can Scale the Still Images, but the Scaling algorithms in Photoshop are much better, and offer more control.
    Now, if you wish to do an HD Project, just choose that as your Preset, and then use the Images in about their original size. Note, there will be some black borders, as the screen-caps most likely have a different Aspect Ratio, than a Video Project, which for HD will be 16:9. Especially with screen-caps, that are pretty low resolution to begin with, I would NOT do any Scaling, and would live with the letterboxing, or pillar boxing, rather than Scale and effectively Crop.
    Also, when Scaling in Photoshop, I do not Save_As JPEG, as it introduces compression, but only as either PSD (Photoshop's native format), or PNG.
    Good luck,
    Hunt

  • Export to Quicktime creates additional video frames!!Help!!

    I am using FCP 6.0.6 and following problem happens for the first time:
    I am trying to export a quicktime file from a 45 sec. trailer video. It is all rendered and when viewing the video from the timeline in the canvas, everything is correct as i cut it. But in the exported quicktime file there are additional frames that appear and are not supposed to be there. (a couple frames of video before and/or after the cut appear)
    there isn't even a fade between those clips with the additional frames, just normal cuts....
    I am not a pro in FCP but I edited several short films on it and such an export glitch never happened before. Any suggestions how to fix that please?
    Thank you.

    Set the Canvas to 100% and step through the video and see if there are any extra frames.

  • Stacking video frames to make still image - help please

    Question:
    I want to take 2 seconds of video ( 60 frames )and stack all the video frames to make one still image.
    I just tried to do this in Photoshop CS3 but found out that this requires CS3 extended version. Is there a stacking feature in Final Cut Express? ( Or in iMovie6 ?)
    Any ideas welcome as to how to accomplish this task.
    Thank you in advance.
    Tom

    I would say the best advice has already been given, which would be to use a still camera with a long shutter speed. However I suspect you already have your footage and would need to wait for another opportunity to do this. I'd say the next best option would be a motion blur filter, I think stacking each frame would have its problems.
    You can easily export your 2 seconds of video to single frame images by exporting to an image sequence, you could then import each still as a layer into photoshop. You would probably find that other stars (having 60 images on top of each other) would be very bright and stand out like a bird of paradise's mating ritual, unless you adjusted the opacity of each which you would likely need to do for the whole of the image excepting the shooting star. I'd say it can be done, but it sounds like a bit of work.

  • Image processing algorithms on video frames.

    Hello.
    I am trying to access video frames, one by one, and do image processing on each of them. this practically includes just a comparison of successive video frames to see how much the content is changing so as to detect when the scenes in the video are changing. i am already using a variation of the frame access code by java. i am able to retrieve the individual frames in the 'buffer' format, and i can convert it to .png and save them to hdisk too.
    what i need to know is whether i can use the buffer type itself to do pixel comparisons, or i need to convert it to an image first. any1 with experience in image processing in java will probably have an idea. and if u can suggest a package, or code whatsoever available online which can help me in my image processing demands, i would really appreciate that.
    thanks!

    Hi Greyfox,
    You can calculate a checksum on the bytes in a bufferedImage and keep a hold of it and use it to check against the next image like so:
    try
              raster = buffImg.getWritableTile(buffImg.getWidth(), buffImg.getHeight());
              imgBytes = ((DataBufferByte)raster.getDataBuffer()).getData();
              // Compute CRC-32 checksum           
         checksumEngine.update(imgBytes, 0, imgBytes.length);
         long checksum = checksumEngine.getValue();
         // Check if it's the same as the previous checksum.
         if (checksum == previousImageChecksum)
              isFrozen = true;
              // Do some logging to try and find out why the image is frozen.
              log.debug("--------- ALERT : DUPLICATE IMAGES FOUND ---------");
              log.debug("Checksum comparison. Current = " + checksum + ". Previous = " + previousImageChecksum);           
         else
              // Give the previous checksum the current value so we can use it for the next check.
              previousImageChecksum = checksum;
         catch (Exception e)
              log.error("Error calculating the checksum.", e);
         // The checksum engine can be reused again for a different byte array by calling reset()
         checksumEngine.reset();

  • Please Help! PrE 4 "failed to return a video frame" on my project!

    Big project, I finally pulled everything all together and on the render to H.264, I get "Adobe Premiere Elements (4) failed to return a video frame."
    I really had hoped to get this in today (it's a video pitch for my dream opportunity).   Any help you guys/gals can lend would be greatly appreciated!

    Bill, thank you!  Your article did help, and I was able to get the video to completely render.  I essentially used a "Title" track, stripped down of its text/shapes to fill in all the gaps. Seems to have done the trick on that issue.
    Unfortunately, I must have done something wrong, because the audio and the video are now terribly out of sync.  The odd thing is, it seems to be matched  sometimes, but then the video of me talking appears to speed up or slow down - the audio does not sound distorted but the video appears to be changing speeds.  It's kind of throwing off my "Oh maybe I added too long of a gap Title frame and skewed the audio" theory.
    I was dreading this moment.  The moment when all is done and I can't export cleanly!  Perhaps I should pose the audio sync problem as a separate question, because this is a fairly detailed project (lots of images/video popping up) and I fear that I'm having some sort of conversion or codec issue now  
    Any ideas?  Thanks a million Bill, and everybody else!

  • When I apply smoothing to a clip, it does nothing and the video frame remains static! Please Help!

    When I apply smoothing to a clip, it does nothing and the video frame remains static. As opposed to moving around in order to compensate for my movement, which exposes black edges. That is what I am trying to get. Please help
    These are the steps I follow. Import clip > Library > Behaviours > Motion > Stabilize. I then add the stabilize > go to inspector and change method to smooth and finally, analyze. However, it is not doing anything. My Macbook Pro was recently replaced and this is what I recall doing on my previous one, but it doesnt seem to be working for me. Is there a step im missing or something?
    Thanks for any help!

    Smooth is just going to smooth out a little "jitter" or jerkiness in the footage. Unless there is a lot of camera movement, you won't notice much. If you really want to see Motion go to work, change the Method to Stabilize.
    BTW, once the footage is analyzed, you can make any changes you want to any of the other parameters - you don't have to re-analyze. I recommend Stabilize with Adjust: Position Scale and Rotation and Borders set to Zoom (depending on the quality of the video) — or you might consider adding a mask to the group the stabilized video is in

  • Firefox 3.6.15 not play youtube videos show blank video frame but other browsers play perfectly please help me for this matter i have already updated adobe flash player.

    Firefox 3.6.15 not play youtube videos show blank video frame but other browsers play perfectly please help me for this matter i have already updated adobe flash player.

    Answers in this forum have shown different things have worked for different people.
    For some clearing YouTube cookies and the cache solved the problem. For details of how to do that see https://support.mozilla.com/kb/Deleting+cookies and https://support.mozilla.com/kb/How+to+clear+the+cache
    Others had to go a step further after deleting YouTube cookies and block YouTube from saving cookies. In the Tools menu select Options to open the Options window. Go to the Privacy panel and make sure it is set to "Use custom setting for history". Click the Exceptions button, type in http://www.youtube.com and click on Block
    Another option is to disable hardware acceleration for Flash. To do that right-click on a Flash video, select Settings, go to the first tab of the settings for the option to enable/disable hardware acceleration for Flash. This is something recommended by YouTube for those having problems - http://www.google.com/support/youtube/bin/answer.py?&answer=1209379

  • NEED HELP WITH IMPORT VIDEO FRAMES TO LAYERS!!!!

    I'm trying to make GIFs from videos but every time I try importing 'Video Frames to Layers', it keeps telling me I need to download QuickTime 7.1 or higher! So I downloaded it and it DOESN'T DETECT that I downloaded it! So I decided to enable the codec in QuickTime to Photoshop, THAT DOESN'T WORK EITHER! So I uninstalled it and reinstalled QuickTime and IT STILL DOESN'T WORK!
    WHAT THE HELL? WHY WON'T THIS WORK??? AAAAGGGHHHHH!!!!!!

    Something is blocking the qtserver32.exe and dynamiclinkmanager.exe on your system. These auxiliary components are required to provide access to QT features. turn off your virus scanner, check your firewall etc.
    Mylenium

  • How to use the frameaccess code to convert video frames to jpeg files

    Hello everyone. I am working on a project on video processing, and i need to be able to do image processing on individual video frames. However, to do this, I need to convert the frames to an appropriate format, namely jpeg. It is actually the conversion from buffer frame to BufferedImage that is important, as i already have an approximate knowledge of filewriter for the saving of already rendered file.
    The original frameaccess code can be found here: http://java.sun.com/products/java-media/jmf/2.1.1/solutions/FrameAccess.html
    there are several other threads tied to this topic, some of which do not work for me, or simply do not suit my needs, so please do not link me to them unless you are sure its the real solution.
    if any one could help me by showing me the way of doing it correctly, and maybe give a nice short explanation, i would be very grateful.
    Thanks you.
    P.s: i am only a beginner to intermediate student in java and programming in general so...

    Here is the code i am currently using.
    package Test;
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import javax.media.*;
    import javax.media.control.TrackControl;
    import javax.media.Format;
    import javax.media.format.*;
    import javax.media.bean.playerbean.MediaPlayer;
    import javax.media.util.*;
    import java.awt.image.BufferedImage;
    import java.awt.image.RenderedImage;
    import java.awt.image.*;
    import javax.imageio.ImageWriter;
    import javax.imageio.ImageIO;
    import javax.media.control.FrameGrabbingControl;
    * Sample program to access individual video frames by using a
    * "pass-thru" codec. The codec is inserted into the data flow
    * path. As data pass through this codec, a callback is invoked
    * for each frame of video data.
    public class FrameAccess extends Frame implements ControllerListener {
    Processor p;
    Object waitSync = new Object();
    boolean stateTransitionOK = true;
    * Given a media locator, create a processor and use that processor
    * as a player to playback the media.
    * During the processor's Configured state, two "pass-thru" codecs,
    * PreAccessCodec and PostAccessCodec, are set on the video track.
    * These codecs are used to get access to individual video frames
    * of the media.
    * Much of the code is just standard code to present media in JMF.
    public boolean open(MediaLocator ml) {
         try {
         p = Manager.createProcessor(ml);
         } catch (Exception e) {
         System.err.println("Failed to create a processor from the given url: " + e);
         return false;
         p.addControllerListener(this);
         // Put the Processor into configured state.
         p.configure();
         if (!waitForState(p.Configured)) {
         System.err.println("Failed to configure the processor.");
         return false;
         // So I can use it as a player.
         p.setContentDescriptor(null);
         // Obtain the track controls.
         TrackControl tc[] = p.getTrackControls();
         if (tc == null) {
         System.err.println("Failed to obtain track controls from the processor.");
         return false;
         // Search for the track control for the video track.
         TrackControl videoTrack = null;
         for (int i = 0; i < tc.length; i++) {
         if (tc.getFormat() instanceof VideoFormat) {
              videoTrack = tc[i];
              break;
         if (videoTrack == null) {
         System.err.println("The input media does not contain a video track.");
         return false;
         System.err.println("Video format: " + videoTrack.getFormat());
         // Instantiate and set the frame access codec to the data flow path.
         try {
         Codec codec[] = { new PreAccessCodec(),
                        new PostAccessCodec()};
         videoTrack.setCodecChain(codec);
         } catch (UnsupportedPlugInException e) {
         System.err.println("The process does not support effects.");
         // Realize the processor.
         p.prefetch();
         if (!waitForState(p.Prefetched)) {
         System.err.println("Failed to realize the processor.");
         return false;
         // Display the visual & control component if there's one.
         setLayout(new BorderLayout());
         Component cc;
         Component vc;
         if ((vc = p.getVisualComponent()) != null) {
         add("Center", vc);
         if ((cc = p.getControlPanelComponent()) != null) {
         add("South", cc);
         // Start the processor.
         p.start();
         setVisible(true);
         return true;
    public void addNotify() {
         super.addNotify();
         pack();
    * Block until the processor has transitioned to the given state.
    * Return false if the transition failed.
    boolean waitForState(int state) {
         synchronized (waitSync) {
         try {
              while (p.getState() != state && stateTransitionOK)
              waitSync.wait();
         } catch (Exception e) {}
         return stateTransitionOK;
    * Controller Listener.
    public void controllerUpdate(ControllerEvent evt) {
         if (evt instanceof ConfigureCompleteEvent ||
         evt instanceof RealizeCompleteEvent ||
         evt instanceof PrefetchCompleteEvent) {
         synchronized (waitSync) {
              stateTransitionOK = true;
              waitSync.notifyAll();
         } else if (evt instanceof ResourceUnavailableEvent) {
         synchronized (waitSync) {
              stateTransitionOK = false;
              waitSync.notifyAll();
         } else if (evt instanceof EndOfMediaEvent) {
         p.close();
         System.exit(0);
    * Main program
    public static void main(String [] args) throws IOException {
         /*if (args.length == 0) {
         prUsage();
         System.exit(0);
         //String url = args[0];
         String url = new String ("file:D:FiMs/avpr.avi");
         if (url.indexOf(":") < 0) {
         prUsage();
         System.exit(0);
         MediaLocator ml;
         //MediaPlayer mp1 = new javax.media.bean.playerbean.MediaPlayer();
         //mp1.setMediaLocation(new java.lang.String("file:D:/FiMs/299_01_hi.mpg"));
         //mp1.start();
         if ((ml = new MediaLocator(url)) == null) {
         System.err.println("Cannot build media locator from: " + url);
         System.exit(0);
         FrameAccess fa = new FrameAccess();
         if (!fa.open(ml))
         System.exit(0);
    static void prUsage() {
         System.err.println("Usage: java FrameAccess <url>");
    * Inner class.
    * A pass-through codec to access to individual frames.
    public class PreAccessCodec implements Codec {
    * Callback to access individual video frames.
         void accessFrame(Buffer frame) {
         // For demo, we'll just print out the frame #, time &
         // data length.
         long t = (long)(frame.getTimeStamp()/10000000f);
         System.err.println("Pre: frame #: " + frame.getSequenceNumber() +
                   ", time: " + ((float)t)/100f +
                   ", len: " + frame.getLength());
         * The code for a pass through codec.
         // We'll advertize as supporting all video formats.
         protected Format supportedIns[] = new Format [] {
         new VideoFormat(null)
         // We'll advertize as supporting all video formats.
         protected Format supportedOuts[] = new Format [] {
         new VideoFormat(null)
         Format input = null, output = null;
         public String getName() {
         return "Pre-Access Codec";
         // No op.
    public void open() {
         // No op.
         public void close() {
         // No op.
         public void reset() {
         public Format [] getSupportedInputFormats() {
         return supportedIns;
         public Format [] getSupportedOutputFormats(Format in) {
         if (in == null)
              return supportedOuts;
         else {
              // If an input format is given, we use that input format
              // as the output since we are not modifying the bit stream
              // at all.
              Format outs[] = new Format[1];
              outs[0] = in;
              return outs;
         public Format setInputFormat(Format format) {
         input = format;
         return input;
         public Format setOutputFormat(Format format) {
         output = format;
         return output;
         public int process(Buffer in, Buffer out) {
         // This is the "Callback" to access individual frames.
         accessFrame(in);
         // Swap the data between the input & output.
         Object data = in.getData();
         in.setData(out.getData());
         out.setData(data);
         // Copy the input attributes to the output
         out.setFormat(in.getFormat());
         out.setLength(in.getLength());
         out.setOffset(in.getOffset());
         return BUFFER_PROCESSED_OK;
         public Object[] getControls() {
         return new Object[0];
         public Object getControl(String type) {
         return null;
    public class PostAccessCodec extends PreAccessCodec {
         // We'll advertize as supporting all video formats.
         public PostAccessCodec() {
         supportedIns = new Format [] {
              new RGBFormat()
    * Callback to access individual video frames.
         void accessFrame(Buffer frame) {
         // For demo, we'll just print out the frame #, time &
         // data length.
         long t = (long)(frame.getTimeStamp()/10000000f);
         System.err.println("Post: frame #: " + frame.getSequenceNumber() +
                   ", time: " + ((float)t)/100f +
                   ", len: " + frame.getLength());
         public String getName() {
         return "Post-Access Codec";
    and here is what itprabhu5 proposed to use to convert and save the frames as .png(or .jpeg in the same way)
    import java.io.*;
    import java.util.*;
    import java.awt.*;
    import java.awt.image.*;
    import javax.imageio.*;
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.format.*;
    import javax.media.util.*;
    * Grabs a frame from a Webcam, overlays the current date and time, and saves the frame as a PNG to c:\webcam.png
    * @author David
    * @version 1.0, 16/01/2004
    public class FrameGrab
         public static void main(String[] args) throws Exception
              // Create capture device
              CaptureDeviceInfo deviceInfo = CaptureDeviceManager.getDevice("vfw:Microsoft WDM Image Capture (Win32):0");
              Player player = Manager.createRealizedPlayer(deviceInfo.getLocator());
              player.start();
              // Wait a few seconds for camera to initialise (otherwise img==null)
              Thread.sleep(2500);
              // Grab a frame from the capture device
              FrameGrabbingControl frameGrabber = (FrameGrabbingControl)player.getControl("javax.media.control.FrameGrabbingControl");
              Buffer buf = frameGrabber.grabFrame();
              // Convert frame to an buffered image so it can be processed and saved
              Image img = (new BufferToImage((VideoFormat)buf.getFormat()).createImage(buf));
              BufferedImage buffImg = new BufferedImage(img.getWidth(null), img.getHeight(null), BufferedImage.TYPE_INT_RGB);
              Graphics2D g = buffImg.createGraphics();          
              g.drawImage(img, null, null);
              // Overlay curent time on image
              g.setColor(Color.RED);
              g.setFont(new Font("Verdana", Font.BOLD, 16));
              g.drawString((new Date()).toString(), 10, 25);
              // Save image to disk as PNG
              ImageIO.write(buffImg, "png", new File("c:\\webcam.png"));
              // Stop using webcam
              player.close();
              player.deallocate();
              System.exit(0);                    
    however, i am unable to use it together with my code... i m not even sure if im using it at the right place.. (note that u will have to discard some lines from the second code, because it is actually grabbing frames from a webcam in that example)
    if any1 can make it happen please help me. thx.

  • How to make the graph follows the position of the video frame

    Hai..
    I want to open the video (. avi) and graph together in one VI.. The videos and graphs can be controlled (forwarded or rewind) in the desired position.. However, the graph should follow where's the position of the video frame..   The graph generated from the data in excel, after reading data, then there is the processing of signals, such as filter, mean, find the peak, etc.. After that the result will appear in the graph..
    Until now, I've been able to display video and graph.. I'm trying to use WMP and also IMAQ..
    Because I want to show the position of the graph or signal when the video plays, I was making a cursor or a line on a graph that follows the position of the video..
    First, I'm trying using WMP.. I can forward and rewind video using WMP, after that I make a cursor on the graph and the position of cursor I put in the position video.. And then when I run the program, the signal that arises from the right, but the cursor in the graph follow the position of the video (the cursor appears on the left) different side with the signal..
    I also tried using IMAQ when I tried to use the video controls, so the video can be forward or rewind using the slide, and I made a graph control to follow the video.. But the video isn't playing, it just show only images or frame in the video..
    Can we create a graph that can follow the position of the video? (graph can be in forward and rewind just like with video)
    I've tried many ways but until now have not been successful.. can someone help me?
    Any help is greatly appreciated thank you.

    This should do pretty much what you want, assuming that a slider is how you are controlling your video position. You are going to have to play around with it a little but it should give you the basic idea.
    Attachments:
    Slider.vi ‏35 KB

  • Adobe Premiere Saving Issue: Returning a Video Frame

         I have Adobe Premiere Elements 4 and have edited a video on it. The video format is AVI, from a camera that didn't seem to have trouble before this. It is a Sony if that is any help. I'm really hoping it isn't CODEC problems.
         Last night I finished my project and tried to save it on my desktop as a Windows Media movie, but an error popped up saying that "Adobe Premiere failed to return a video frame." I tried other saving styles to no avail.
         Thus I began the process of googling and then trying to solve this saving error by changing my edits. I have removed all Video Effects, except for three black and white shots. I have gone through and checked that I have no gaps, about five times. I saw that my audio (in a wma format) wasn't perfectly aligned with my visuals and had gaps, so I added in audio till there was never a silent moment.
         Is that audio format (wma) acceptable?
         I am playing two soundtracks over each other, one is the vocals and one is the music. The music's format is MP3.
         I have several still shots created with the program with titles over it. At one moment I tried to put a menu on the project, but it didn't work out. When I went to try and delete my attempt, I couldn't find the menu to remove it.
         The piece is about five minutes long. I can't think of anything else to tell you.
         I'm running out of things to change. I'm afraid my CODEC is wrong and I may have to start all over (is there a way to apply a fix to a CODEC error on a project?). Having spent all day on this, I'm at a point of desperation. If I can't get it to work, I'm about to start all over in Windows Movie Maker where at least I know I can save it and turn it in tomorrow.
         Thanks

    For the Audio Assets, the best that one can do is to use PCM/WAV, and use any number of audio-editing programs to convert that.
    Still, your error is "Return a Video Frame." That indicates an error in the Video portion of the Timeline.
    Besides gaps, do you have any overly large still images?
    As for any gaps, did you use the method outlined in the linked article? They can be very hard to see, even when zoomed into the max view (Frame View).
    I still did not see the CODEC of the used AVI files. Can you provide that please, as it might make a differenece?
    Good luck,
    Hunt

  • Multiclip editing error message 'video frames don't match'

    I basically need help figuring out how to make these video frames work together. Also, what is the easiest/quickest way without loosing quality. (I have a ton of clips to get through)
    1st image is settings for the camera I'm trying to match everything to. 2nd image is the camera with the wrong settings. I've tried a few different things using the export to quicktime function as well as compressor but I must be doing something wrong.
    Thanks in advance!

    Just ran into the same issue...how did you solve it?
    Thanks!

Maybe you are looking for

  • Erratic battery behaviour on Macbook air since latest update

    My Macbook Air 11.1 is from 2011, and the battery started going bad last year. I ordered and placed a new battery in january. This worked perfectly, no problems whatsoever. This morning, I installed the latest available Apple update (unsure which one

  • Unable to cancel copy process

    I inserted a DVD into my laptop so that I would be able to transfer the music to my laptop. I dragged the file from the DVD to the desktop, and it began to transfer/copy the files. It then said one of the files was unable to be copied, and it almost

  • Errors with the global conversion rule for the field 0SOURSYSTEM.

    Hello Gurus,     We are implementing CRM Activities. I enhanced the data source and when I add new info objects to 0SAL_DS01 DSO and trying to activate I'm getting there errors. Can some one please help me out in this problem? Error in global convers

  • Where to buy a Radeon X800 XT Fast????

    Does anyone know where I can order a X800 XT for my PowerMac G5? I need one ASAP! Any places ship over night? I have a project due in a week and my current 9600 XT isn't cutting it. Thank so much!

  • RSS reader recommendation

    Slighlty off topic sorry. Can anyone suggest a free RSS reader that copes with SDN's authentication requirements. I really like the ability to monitor this forum through RSS rather than email, however my current reader doesn't like retrieving the ful