Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 2 of 2

Thread: [JMF] Generate a QuickTime movie of H.263 encoding from a list of jpeg frame

  1. #1
    Junior Member
    Join Date
    Jan 2013
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default [JMF] Generate a QuickTime movie of H.263 encoding from a list of jpeg frame

    I follow the example, "Generating a Movie File from a List of (JPEG) Images [Custom DataSource"
    Generating a Movie File from a List of (JPEG) Images

    I found example source code here
    JpegImagesToMovie.java - jpegs2movie - Create a MOV video file from sequence of JPEG files - Google Project Hosting

    In the example, a QuickTime movie is generated in very first video format that supported by processor, which actually works.

    But I want to generate QuickTime of H.263 encoding, so I change from

    tcs[0].setFormat(f[0]);

    tcs[0].setFormat(f[7]);


    The error message I got is:

    java.lang.UnsatisfiedLinkError: JMFSecurityManager: java.lang.UnsatisfiedLinkError: no jmutil in java.library.path
    Failed to realize: com.sun.media.ProcessEngine@1ac0d45
    Cannot build a flow graph with the customized options:
    Unable to transcode format: JPEG, 640x480, FrameRate=30.0
    to: H263, 352x288
    outputting to: video.quicktime
    Error: Unable to realize com.sun.media.ProcessEngine@1ac0d45


    Anyone know the solution? or it is not feasible converting from a list of Jpeg to H.263 directly?

    Thanks in advance.


  2. #2
    Super Moderator pbrockway2's Avatar
    Join Date
    Jan 2012
    Posts
    987
    Thanks
    6
    Thanked 206 Times in 182 Posts

    Default Re: [JMF] Generate a QuickTime movie of H.263 encoding from a list of jpeg frame

    Also at java-forums.org

    Please, if you are going to start a discussion at multiple places, post a link at each to the others. That way everyone taking part in the discussion knows what else is being said. Be aware when you cross post that some people will not spend time thinking about a topic which may well have been addressed satisfactorily elsewhere.

Similar Threads

  1. Replies: 1
    Last Post: January 19th, 2012, 03:44 PM
  2. Avater Upload(JPEG,PNG etc)
    By goldendraco in forum JavaServer Pages: JSP & JSTL
    Replies: 0
    Last Post: November 30th, 2011, 03:34 PM
  3. Trying to achieve Movie Style Rolling Credits
    By javanoob123 in forum What's Wrong With My Code?
    Replies: 1
    Last Post: January 10th, 2011, 08:02 PM
  4. Replies: 2
    Last Post: January 8th, 2010, 08:22 AM

Tags for this Thread