Package quicktime.std.movies.media

Examples of quicktime.std.movies.media.SoundMedia


   */
  public static Track addAudioTrack(Track source, Movie target)
  throws QTException
  {
    Track targetTrack = target.newTrack(0f, 0f, 20);
    @SuppressWarnings("unused")
    SoundMedia media = new SoundMedia(targetTrack,
      source.getMedia().getTimeScale(), new DataRef(new QTHandle()));
    source.insertSegment(targetTrack, 0, source.getDuration(), 0);
    return targetTrack;
  } // addAudioTrack(Track, Movie)
View Full Code Here

TOP

Related Classes of quicktime.std.movies.media.SoundMedia

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.