I am using xuggler API to transcode Video from one format to another.

Following the example, provided by

http://wiki.xuggle.com/MediaTool_Introduction & http://www.javacodegeeks.com/2011/02/xuggler-tutorial-transcoding-media.html

public void convertVideo(){

     String sourceUrl=getResourceDirectory()+"/in/AV36_1.AVI";
     String destUrl=getResourceDirectory()+"/out/output.mp4";

     IMediaReader reader = ToolFactory.makeReader(sourceUrl);

        // add a viewer to the reader, to see progress as the media is
        // transcoded
        reader.addListener(ToolFactory.makeViewer(true));

     // create a writer which receives the decoded media from
     // reader, encodes it and writes it out to the specified file
     IMediaWriter writer = ToolFactory.makeWriter(destUrl, reader);

     // add a debug listener to the writer to see media writer events
     writer.addListener(ToolFactory.makeDebugListener());


////
////        // create the media writer
        reader.addListener(ToolFactory.makeWriter(destUrl, reader));

        // read packets from the source file, which dispatch events to the
        // writer, this will continue until 


        while (reader.readPacket() == null)
          do {} while(false);
    }

Provides Could Not Open Exception:

  Exception in thread "main" java.lang.RuntimeException: could not open: D:\Malhar\project_works\VideoConvertter/resources/in/AV36_1.AVI
    at com.xuggle.mediatool.MediaReader.open(MediaReader.java:637)
    at com.xuggle.mediatool.MediaReader.readPacket(MediaReader.java:434)
    at util.VideoEncoder.convertVideo(VideoEncoder.java:38)
    at ConvertVideo.main(ConvertVideo.java:12)

Have tried with different file to.. But, the result is same.

link|improve this question

61% accept rate
feedback

1 Answer

Did you notice that you are using unix / and windows \ in the same URL?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.