Re: How to split audio alone from a video file.

After have configured the processor and before calling the realize method you have to setEnabled(False) the video track.
Processor proc = ....
proc.configure();.....
//if the video track is the second:
proc.getTrackControl()[1].setEnabled(false);
proc.realize()....
In this way, in the multiplexing phase, the video track will be ignored.

Due to DRM, you cannot burn purchased videos, except for backup on Data CD/DVD.
The only way to separate the audio is to use a capture application like Wiretap Pro or Audio Hijack (Pro). Latest versions can be found on versiontracker.com.
Hope this helps.
M

Similar Messages

  • How to split words alone from text ?

    how to split the text from a text file even with out the special characters to be stored to DB.I have seperated words using split.but it is having special charecters. is there any option with split to give special characters too as delimiters (i mean multilple delimiters).
    Or any other way to get the words and integers alone?

    gs_ravishankar wrote:
    i think his problem is he has a file which has some text row wise, this text contains different special characters.
    and his job is to read the text from the file and remove all special characters in the text and store this string in DB.
    if this is the case,
    i would suggest to get the ascii value range of all special characters and then write a condition for it.
    may be something like this
    if(text.chatAt(i) >= 12 && text.charAt(i) <= 45)
    text.replace();Jeebus, have you ever heard of regular expressions?

  • How to split Large mp4 and AVI video files to smaller scenes

    Hi All
    I’ve been looking into how to cut-up large files ready for import into CS4. So far all I can find are the usual suspects that only lets you cut a section from a file. Dose anyone use any software that enables you to split a large video file (MP4, AVI and so on) into say 20 sections all in one hit?
    I do a lot of HD onboard cams, so the video is set to fire and only shut off when the run has finished. I then end up with about 60 percent of the file (in diferent parts) I need to trash.
    Any help or advice would be much appreciated indeed!
    Xray

    function(){return A.apply(null,[this].concat($A(arguments)))}
    the_wine_snob wrote:
    Maybe, but maybe not. I use DigitalMedia Converter to convert to DV-AVI Type II's (I'm only doing SD), and it has a Split function. However, I have never used that, so do not know how well it might work for your needs, if at all. I just do not know. I believe that Deskshare has a user forum, and that might be a good place to try, after you've looked down their FAQ's.
    I hope that others will have a definitive answer for you, with iron-clad suggestions.
    Good luck,
    Hunt
    i don't know.

  • How do I stop iTunes from duplicating video files?

    For some reason unknown to me, iTunes duplicates the video files when they are added to the library.
    For music, when I add these to the library, the files stay on the external drive, and they are listed in the library.
    However, I now moved my video files to an extrnal drive, but when I want to add them back into my library, it wants to copy all of them (the full file) from the external drive to my itunes folder.  I moved them off of the computer hard drive because they take up too much space.  I don't want them here, but I do want them in the library so I can select and sync them.
    How do I add these videos to my itunes library, but keep the actual files on the extrnal drive?

    Turn off the option "Copy to iTunes Media folder when adding to library" under Edit > Preferences > Advanced.
    tt2

  • How to take a picture from a video file

    Is there a way to take a picture of video clip from the web?  I am trying to pull a pic of a video file, a single frame. Is there an app, or a really easy way to crop and save a photo to my library?

    Pause the video where you want the clip then use shift+command+4 to get a cross hair selector and drag that across the part of the screen you want to capture, it will be saved as Screenshot_date_time to your Desktop

  • How to burn audio only from a Video Single

    I have a video single as part of personal mix in itunes. When I try to burn the mix, all of the tracks burn except the video single. The dialog box says that burning is disabled for this track. I assume this is because the video content is imbedded in the file.
    This is somewhat confusing as the track was noted as a single and separate video at the time of purchase. Is there any way to convert the content so that it can be included on an audio CD?
    G4 Powerbook   Mac OS X (10.3.9)  

    Due to DRM, you cannot burn purchased videos, except for backup on Data CD/DVD.
    The only way to separate the audio is to use a capture application like Wiretap Pro or Audio Hijack (Pro). Latest versions can be found on versiontracker.com.
    Hope this helps.
    M

  • Re: how to capture a frame from a video file and save it as a jpeg

    package com.snn.multimedia;
    * @(#)FrameAccess.java     1.5 01/03/13
    * Copyright (c) 1999-2001 Sun Microsystems, Inc. All Rights Reserved.
    * Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
    * modify and redistribute this software in source and binary code form,
    * provided that i) this copyright notice and license appear on all copies of
    * the software; and ii) Licensee does not utilize the software in a manner
    * which is disparaging to Sun.
    * This software is provided "AS IS," without a warranty of any kind. ALL
    * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
    * IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
    * NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
    * LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
    * OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
    * LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
    * INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
    * CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
    * OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
    * POSSIBILITY OF SUCH DAMAGES.
    * This software is not designed or intended for use in on-line control of
    * aircraft, air traffic, aircraft navigation or aircraft communications; or in
    * the design, construction, operation or maintenance of any nuclear
    * facility. Licensee represents and warrants that it will not use or
    * redistribute the Software for such purposes.
    import java.util.Date;
    import java.util.Arrays;
    import java.util.Iterator;
    import javax.imageio.ImageIO;
    import javax.imageio.stream.ImageOutputStream;
    import javax.imageio.ImageWriter;
    import java.awt.*;
    import java.awt.image.BufferedImage;
    import java.awt.image.DataBufferByte;
    import javax.media.*;
    import javax.media.control.FramePositioningControl;
    import javax.media.control.TrackControl;
    import javax.media.Format;
    import javax.media.format.*;
    import javax.media.util.BufferToImage;
    import javax.media.util.ImageToBuffer;
    import java.io.FileOutputStream;
    import java.io.OutputStream;
    import com.sun.image.codec.jpeg.*;
    * 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 java.awt.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;
    VideoFormat currentFormat = (VideoFormat)videoTrack.getFormat();
    System.err.println("Video format: " + videoTrack.getFormat() );
    videoTrack.setFormat(new VideoFormat("RGB", currentFormat.getSize(), currentFormat.getMaxDataLength(), currentFormat.getDataType(), currentFormat.getFrameRate()));
    // Instantiate and set the frame access codec to the data flow path.
    try
    // Try to retrieve a FramePositioningControl from the player.
    FramePositioningControl fpc = (FramePositioningControl) p.getControl("javax.media.control.FramePositioningControl");
    if (fpc == null)
    System.err.println("The player does not support FramePositioningControl.");
    System.err.println("There's no reason to go on for the purpose of this demo.");
    return false;
    Time duration = p.getStopTime();
    long totalFrames = 0;
    if (duration != Duration.DURATION_UNKNOWN)
    System.err.println("Movie duration: " + duration.getSeconds());
    totalFrames = fpc.mapTimeToFrame(duration);
    if (totalFrames != FramePositioningControl.FRAME_UNKNOWN)
    System.err.println("Total # of video frames in the movies: "
    + totalFrames);
    } else
    System.err.println("The FramePositiongControl does not support mapTimeToFrame.");
    } else
    System.err.println("Movie duration: unknown");
    long[] frames;
    if (totalFrames > 0L)
    double intervalDouble = Math.floor(totalFrames / 5.0);
    long interval = new Double(intervalDouble).longValue();
    frames = new long[5];
    frames[0] = 1;
    frames[1] = frames[0] + interval;
    frames[2] = frames[1] + interval;
    frames[3] = frames[2] + interval;
    frames[4] = frames[3] + interval;
    } else
    frames = new long[1];
    frames[0] = 1;
    // Codec codec[] = { new PreAccessCodec(), new PostAccessCodec()};
    Codec codec[] = { new OverlayCodec(frames)};
    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)
    if (args.length == 0)
    prUsage();
    System.exit(0);
    String url = args[0];
    if (url.indexOf(":") < 0)
    prUsage();
    System.exit(0);
    MediaLocator ml;
    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 OverlayCodec extends PreAccessCodec
    long[] myFrames;
    BufferedImage work;
    byte[] workData;
    int width;
    int height;
    int dataLen;
    RGBFormat supportedRGB = new RGBFormat(null, // size
    Format.NOT_SPECIFIED, // maxDataLength
    Format.byteArray, // dataType
    Format.NOT_SPECIFIED, // frameRate
    24, // bitsPerPixel
    3, 2, 1, // red/green/blue masks
    3, // pixelStride
    Format.NOT_SPECIFIED, // lineStride
    Format.FALSE, // flipped
    Format.NOT_SPECIFIED); // endian
    public OverlayCodec(long[] frames)
    // force specific input format
    supportedIns = new Format[] {
    supportedRGB};
    myFrames = new long[frames.length];
    System.arraycopy(frames, 0, myFrames, 0, frames.length);
    public String getName()
    return "Capture Codec";
    public Format setInputFormat(Format format)
    if ((format != null) && (format instanceof RGBFormat)
    && format.matches(supportedRGB))
    // set up working image if valid type
    // (it should be since we insisted!)
    Dimension size = ((RGBFormat) format).getSize();
    width = size.width;
    height = size.height;
    dataLen = width * height * 3;
    if ((dataLen > 0)
    && ((work == null) || (work.getWidth() != width)
    || (work.getHeight() != height)))
    // working image - same 3-byte format as buffer
    work = new BufferedImage(width, height,
    BufferedImage.TYPE_3BYTE_BGR);
    // reference to pixel data
    workData = ((DataBufferByte) work.getRaster().getDataBuffer()).getData();
    return format;
    * Callback to access individual video frames.
    void accessFrame(Buffer in)
    try
    if (Arrays.binarySearch(myFrames, in.getSequenceNumber()) >= 0)
    BufferToImage stopBuffer = new BufferToImage((VideoFormat) in.getFormat());
    Image stopImage = stopBuffer.createImage(in);
    BufferedImage outImage = new BufferedImage(140, 96,
    BufferedImage.TYPE_INT_RGB);
    Graphics og = outImage.getGraphics();
    og.drawImage(stopImage, 0, 0, 140, 96, null);
    FileOutputStream fout = new FileOutputStream("image"
    + in.getSequenceNumber() + ".jpg");
    writeImage(outImage, fout);
    catch (Exception e)
    e.printStackTrace();
    public int process(Buffer in, Buffer out)
    try
    accessFrame(in);
    BufferToImage stopBuffer = new BufferToImage((VideoFormat) in.getFormat());
    Image stopImage = stopBuffer.createImage(in);
    ImageToBuffer outImagebuffer = new ImageToBuffer();
    out = outImagebuffer.createBuffer(stopImage, p.getRate());
    // Swap the data between the input & output.
    in.copy(out, true);
    catch (Exception e)
    e.printStackTrace();
    return BUFFER_PROCESSED_OK;
    void writeImage(BufferedImage outImage, OutputStream os) throws Exception
    Iterator writers = ImageIO.getImageWritersByFormatName("jpg");
    ImageWriter writer = (ImageWriter) writers.next();
    ImageOutputStream ios = ImageIO.createImageOutputStream(os);
    writer.setOutput(ios);
    writer.write(outImage);
    ios.close();

    Hi,
    I have a jpeg movie file 60 mins long and a text file tell me five time-lines for breaking the movie. For example, break the movie at 10:21, 16:05�
    The final output should be five small jpeg movie files. Each file contains a 90 sec (30 sec before the break time and 60 sec after the break time).
    Do you know any java library (jar) contain the library that can help me on programming this? Any existing source code? Any SDK for a movie editor can do that?
    Please help.
    Thanks
    Kenny

  • How to split audio from video clip

    Title said it all.
    Thanks

    Command + L does nothing. Any other ideas? What I saw in a tutorial was that they selected a clip, then did some key sequence and it split out the audio track from the video. The audio then showed up as a green section right below the video track. They were doing this to delete the audio. They would split it, then select the audio track, then delete it. I realize I can drop the audio level, but this seemed like an interesting option.
    Thanks

  • How to extract one of several audio tracks from a .vob file?

    Hi guys,
    hope you can help me, i'm looking for a solution for hours now but can't find one.
    I would like to know how to extract one audio track from a .vob file when there are different tracks/languages on the dvd? Media encoder does it very well, but i can't find the option for choosing the right audio track/language for extraction. Please help
    Kind regards
    Alex

    This is because the OMF specification requires mono audio files
    It really depends on what you are trying to do with the two tracks as to the best answer as far as 'grouping'
    You could select all the clips on both tracks and right mouse click and select 'group'
    You could send both tracks to a bus
    You could export the two tracks to a stereo file and bring that back into the session
    Lots more things I'm sure but a little more detail as to what you are trying to do would help

  • How do I seperate the audio track from the video and save it to a CD in Premiere Elements 13?

    How do I seperate the audio track from the video and save it to a CD in Premiere Elements 13?

    Binbashi
    You can separate the audio track from video and save it to a DVD disc within Premiere Elements but not a CD disc.
    To do save to the audio to DVD disc, you do not have to separate linked audio video, just use the export Publish+Share/Computer/Audio and set Presets to the wanted format (AAC, AIFF, MP3, or Windows Waveform (WAV).
    You will not see Audio in the choices since it is at the bottom of the list of choices under Publish+Share/Computer/. You will need to use the thin scroll bar to the right of the choices to scroll to it.
    If you need information on selective export of Timeline content when dealing with more than just this one file on the Timeline, please let us know. If you are trying to produce a CD for listening in car or CD player elsewhere, please let us know.
    Looking forward to learning of your results.
    Thank you.
    ATR

  • How to delete Audio Lectures from iTunesU

    I Just wanted to ask How to delete Audio Lectures from iTunesU?

    If you are using automatic syncing, you must have set up the shuffle's Books screen in iTunes, to tell iTunes how to sync audiobooks to the shuffle.  You go to the Books screen by selecting the shuffle in iTunes, to see the row of "buttons" that starts with Summary.  Click on Books there...
    If you set up that screen to sync audiobooks to the shuffle, you just need to uncheck the books you no longer want on the shuffle, and click Apply.
    If you loaded the shuffle using the manual method (drag and drop items on the shuffle in iTunes), please post back.

  • Hi, I use Notion 4 like rewire slave in Logic, but I don ´t know, how to activate audio input from it, can anybody help me? Thanks, Mario

    Hi, I use Notion 4 like rewire slave in Logic, but I don ´t know, how to activate audio input from it, can anybody help me? Thanks, Mario

    With the rewire slave running, create an aux track in Logic. You should see rewire as an option for the inputs of the aux track.

  • How do i move clips from home video to roll?

    how do i move clips from home video to roll?

    Ahh, Ok. I actually had to go to Lynda.com to watch a training video of this highly bassackwards maneuver, but now I have it. In other words, while the intuitive thing is to make a new event to hold the clip you want and then open the old event and drag the clip into it's new event, the only way to accomplish this maneuver is to NOT create a new event, but rather, go to the clip AFTER the one you want to move, select it and then Right-Click on it and select SPLIT EVENT BEFORE SELECTED CLIP (or go to FILE>SPLIT EVENT BEFORE SELECTED CLIP). Then you wait a few seconds while the program thinks a bit (no feedback it is doing this - just a pause) and then it automatically creates a new event with the clip you wanted. Now just double-click the new event and name it something meaningful.
    Thanks for your help!

  • 2nd Audio track from merged .m4v files does not play on iPod Touch

    I used Handbrake to encode two .m4v files of a concert DVD that spans two DVDs. I then took those two files and combined them into Quicktime Pro to create a single .m4v file. The file plays fine in QT but when I transfer the file to my ipod, only the first audio track (from the first file) plays. Once the video from the second file plays, the audio is silent. Here's what the movie properties look like:
    Enabled Name Start Time Duration Format
    ====================================================
    Y Video Track -- 0:00:00:00 -- 2:21:53:90 -- H.264
    Y Audio Track1 -- 0:00:00:00 -- 2:21:53:90 -- AAC
    Y Audio Track2 -- 1:27:28:87 -- 0:54:24:02 -- AAC
    N Text Track -- 0:00:00:00 -- 2:21:53:90 -- Text
    Any suggestions?
    Thanks,
    Dan

    So basically, anytime I combine more than one mp4 file in QT7 Pro, it will always create multiple audio tracks when doing a simple "save as" (vs. export as)
    Not exactly. QT has it own set of rules. As you noted, the video track had no problem merging into a single track. This would not have happened if you had merged video compressed differently or added an image/stretched image sequence. Not knowing your specific work flow or settings, I hesitate to make any claims here. Frankly, when merging audio, I normally prefer to use GarageBand when I want to create a single master audio track and still retain control of the other tracks for mixing purposes. However, I could just as well have exported the audio in the original file using QT Pro to a single audio file and used that audio track to replace both original tracks keeping both the original video and chapter tracks. It is all a matter of which work flow you consider easiest for a particular job or project.
    If I've exported out my chapter file as a plain text file, how do I go about reintegrating that withing the final mp4 file using QT?
    http://www.apple.com/quicktime/tutorials/chaptertracks.html
    The above link is a somewhat old tutorial explaining how to create a chapter text track from scratch. Since you already have the chapter track, just refer to the steps indicating how to add the text file back to your main movie file. (Ignore the step that says to set a "Preload" option as this pop-up has been removed.)

  • How can I plott data from a text file in the same way as a media player using the pointer slide to go back and fort in my file?

    I would like to plott data from a text file in the same way as a media player does from a video file. I’m not sure how to create the pointer slide function. The vi could look something like the attached jpg.
    Please, can some one help me?
    Martin
    Attachments:
    Plotting from a text file like a media player example.jpg ‏61 KB

    HI Martin,
    i am not realy sure what you want!?!?
    i think you want to display only a part of the values you read from XYZ
    so what you can do:
    write all the values in an array.
    the size of the array is the max. value of the slide bar
    now you can select a part of the array (e.g. values from 100 to 200) and display this with a graph
    the other option is to use the history function of the graphes
    regards
    timo

Maybe you are looking for

  • ActionScript 3 + PHP: TypeError: Error #2007: Parameter text must be non-null.

    Hi - Still new to flash as3 and php - it is a contact form page - user puts in information - i am to receive it in an email address their information as well the variables get sent back from the php to the .swf file. I am receiving these errors and n

  • Project MRP - Requirement Grouping in PR

    Dear Experts, Please note that I am attaching two finished goods (Material Type - FERT) in the project through network activity, on two different activity. The delivery time for the two items are different. Requirement date is one month different for

  • OWSM SAML Verify step problem: Missing Security Header in SOAP message

    I'm having a problem with SAML steps. From gateway log: 2008-09-17 13:21:32,987 INFO [HTTPThreadGroup-58] saml.InsertSAMLSVStep - User attributes map set to generate the attribute assertions: null 2008-09-17 13:21:33,034 INFO [HTTPThreadGroup-60] sam

  • Business Object Data Services (BODI) without SAP MDM?

    Hi, From an architectural point of view; do you always have to use SAP MDM when you want to use the  Business Object Data Services (e.g. for data validity checks when creating customers)? Or can you use  Business Object Data Services in combination w

  • Illustrator CS5 crashes every time I startup

    I've installed CS5 Design Premium. Everything works except for Illustrator. I've seen other threads and tried their suggestions (deleting prefs, deleting cache).  But still it crashes upon startup. Can ANYONE help me?  Here's the crash report: Proces