Testing - JMF compatible media files

A number of people have asked after media files to check JMF based media projects.
Here is a small selection of videos that have all been tested and seen to run in the Performance Pack version of JMStudio. At the moment it includes 2 MOVs and 2 MPEGs. None of them have a soundtrack - it is just video.
[http://www.esnips.com/web/jmfvideo/]
Notes:
These animations are provided for software testing only. They are not available for redistribution, or any other use, without the author's written permission.
The raw video files were wrapped up as Zip files in order to prevent automatic conversion to another format (for which I have no player on this machine - and which is sure not 'JMF compatible').
If anybody knows a file upload site that will not mess with the file types, and better still, will provide a constant and direct URL (no 'click thru' rubbish) where it can even be pulled direct by a Java app., let me know.
Edit 1:
Added '10 dukes' - up for whoever can provide the first link to a 'file site' as described above.
Edited by: AndrewThompson64 on May 21, 2008 10:13 AM

Avi's and mpg's are pretty safe.  Wmv's and .mov's won't sync.
Wyrenut
Post relates to: Centro (AT&T)
I am a Volunteer here, not employed by HP.
You too can become an HP Expert! Details HERE!
If my post has helped you, click the Kudos Thumbs up!
If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

Similar Messages

  • What are compatible media files for the Tungsten E2

    I have a video clip that I'd like to put on my Tungsten E2.  The current file is saved as a .wmv.  When I attempt to sync using the Palm desktop software's media feature, I get the message that the file format is not compatible.   I can't find any information as to what are compatible file formats.  Any advice for me?
    Post relates to: Tungsten E2

    Avi's and mpg's are pretty safe.  Wmv's and .mov's won't sync.
    Wyrenut
    Post relates to: Centro (AT&T)
    I am a Volunteer here, not employed by HP.
    You too can become an HP Expert! Details HERE!
    If my post has helped you, click the Kudos Thumbs up!
    If it solved your issue, Click the "Accept as Solution" button so others can benefit from the question you asked!

  • What is the best alternative except JMF to play mp3, rm or ogg media files

    Hi,
    what is the best alternative except JMF to play mp3, rm or ogg media files ?

    Yes, you are right.
    you can take a look at this:
    first: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6431855
    then:
    http://www.javazoom.net/javalayer/documents.html
    http://www.javaworld.com/javaworld/jw-11-2000/jw-1103-mp3.html#resources

  • Problem in accessing the media files from another server

    Currently I am working in a project with streaming video on demand and using FMS 4.5.
    Let’s say the FMS is installed on one machine say ‘121.123.35.34’ and there is another server ‘100.54.88.222’ where all the media files belong. Now we need to point to this third server to play videos from FMS.I have done the below changes:
    In the fms.ini file: set the VOD_DIR2 = \\100.54.88.222\myvideos
    In the application.xml: Added the stream: <Streams>/hr;${VOD_DIR2}</Streams>
    From my application accessing the path of flv as:source= “rtmp:// 121.123.35.34:1935/vod/hr/test” . Not able to access the video.
    Note: If I will point to say ‘C:hrvideos’ in VOD_DIR2, then I am able to access the videos using the same URL.
    I also tried mapping the shared path to the FMS machine and then given the mapped drive path in the VOD_DIR2, but this also doesn’t work.
    Please let me know:
    If we need to configure any other parameter to stream videos from another server.
    VOD_COMMON_DIR: I modified this similar TO VOD_DIR to location 'C:hrvideos', I am able to stream the videos using rtmp, but not abl eto stream with http.
              Please let me know  can we stream using http also as we need this to run f4m manifest file.
              http://121.123.35.34:8134/vod/hr/sample.mp4.
              http://121.123.35.34:8134/vod/hr/sample.f4m
    Thanks,
    Anjali

    Hi Shiven,
    I followed the steps suggested by you:
    1) Changed the stream:
    <Streams>/hr;${VOD_DIR2}</Streams> to<Streams>/;${VOD_DIR2}</Streams>
    But not able to access the video with rtmp:// 121.123.35.34:1935/vod/test
    2) For http streaming, changes the HttpStreamingContentPath in hds-vod in the httpd config file, and tried to stream the video like:
    http:// 121.123.35.34:8134/vod/test.mp4 or
    http:// 121.123.35.34:8134/hds-vod/test.mp4
    But not able to load the video.
    Please suggest?
    Thanks & Regards,
    Anjali Rawat

  • Java FX Media file not available in JAR

    When I package my Swing/Java FX application with Maven (one-jar-plugin) everything seems to work but the Media files I want to use with Java FX.
    I'm using the following code to access the files as part the deployed JAR file. When I check the one-jar file I can see the sound.mp3 file being at the correct position but Java is throwing the following error:
    MediaException: MEDIA_UNAVAILABLE JAR Entry main/......sound.mp3 not found.
    Am I doing something wrong here with accessing the file via the url?
    The code works fine in eclipse but does no longer work when deployed as one-jar.
    My code:
    final URL sound = this.getClass().getResource("/com/mypackage/sound.mp3");
    AudioClip soundEffect = new AudioClip(sound.toString());

    I've uploaded a basic maven eclipse project which can be used to reproduce the error. The maven pom generates a one-jar file which can be executed. Running the code inside Eclipse works and running it via the one-jar throws the error below.
    You can download the zip file with the eclipse export here: http://www.smallfiles.org/download/3106/eclipse-project.zip.html
    Error Message:
    Exception in thread "main" java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.simontuffs.onejar.Boot.run(Boot.java:340)
    at com.simontuffs.onejar.Boot.main(Boot.java:166)
    Caused by: MediaException: MEDIA_UNAVAILABLE : JAR entry main/resources-0.0.1-SNAPSHOT.jar!/com/example/data/sound.mp3 not found in C:\work\workspaces\tatool\resources\target\resources-0.0.1-SNAPSHOT.one-jar.jar
    at javafx.scene.media.AudioClip.<init>(AudioClip.java:65)
    at com.example.test.MyResourceTest.getResource(MyResourceTest.java:11)
    at com.example.test.MyResourceTest.main(MyResourceTest.java:18)
    ... 6 more

  • Media file error message trying to play files from WDMycloud on ipad

    I am using a WDMyCloud networked hard drive to provide cloud backup for my Windows PCs. This backup includes my Itunes music library
    Using the WDMyCloud app on my iPad(or iPhone) I can see the library is succesfully backed up onto WDMy Cloud and can see all expected songs listed.
    Unfortunately when I try to open some of them on my iPad or iPhone using the WDMyCloud app I get an error message "Unable to play this media file". Some files do open OK
    File formats are mostly .m4a or otherise .mp3 and I have experience of problems with both types of files.
    I used to be able to play all WDMyCloud stored media files without any problem on my iPad/iPhone devices, and I am not aware of changing anything in iTunes/WDMyCloud or my Apple devices other than ensuring I keep up with the latest released software/version.
    Interestingly, I copied a couple of files that would not play into Dropbox onto my PC. I then looked for them on my iPad and iPhone usingWDMycloud app and looked into synced Dropbox folder in WDmy Cloud and found the files and hey presto they play OK.
    They also play on my iPad and iPhone if I go direct to the Dropbox app itself.
    Finally,I can also access my WDmyCloud via my Samsungsmart TV since it is on the same home network and and the "problem"  files will play OK on the TV.
    With my limited technical knowledge, its not clear that there is any difference between the files that play and those that don't.
    Grateful for any advice on what I might be able to do to fix it so all my files will play
    Many thanks

    I see. I understand Cisco just recently released this model in the market so probably there would be more tests to be done for further isolation and come up with a fix solution if proven to be really an issue. I guess for now we'll stand by for updates and just make the best out of Cisco's one of the top of the line routers.

  • Wav - windows media file properties

    hi all, is there a way to get properties from a .wav (windows media) file? for example, the time duration of the media?
    thanks in advance.
    Giovani Salvador

    hi Giovani,
    hope this helps:
    (from http://java.sun.com/products/java-media/jmf/2.1.1/guide/JMFPresenting.html#93867)
    Getting the Duration of the Media Stream
    Since programs often need to know how long a particular media stream will run, all Controllers implement the Duration interface. This interface defines a single method, getDuration. The duration represents the length of time that a media object would run, if played at the default rate of 1.0. A media stream's duration is only accessible through a Player.
    If the duration can't be determined when getDuration is called, DURATION_UNKNOWN is returned. This can happen if the Player has not yet reached a state where the duration of the media source is available. At a later time, the duration might be available and a call to getDuration would return the duration value. If the media source does not have a defined duration, as in the case of a live broadcast, getDuration returns DURATION_UNBOUNDED.
    There are some other ways to control the duration of the media. For example, if you need to wait the media stream to finish, you can listen for StopEvent, EndOfMediaEvent...

  • Moving iTunes media files to external drive broke connection

    I recently moved my iTunes media files to an external drive.  All other iTunes related files were left in my home folder.  Everything worked great for about a month.  Then, mysteriously, I went to access a movie and it said that it could not be found.  I performed the search to my external and the movie played just fine.  Somehow, my connection to iTunes has been broken.  Incidentally, all media files in my external drive show up in the respective folders in iTunes.  They just have exclamation points associated with most of them.  Strangely, some of the files play just fine without having to search.  Very confused.  Can anyone provide a solution to re-establishing my link to iTunes?  Thank you very much.
    Bill

    You had the drive plugged in and mounted before starting iTunes?
    Sometimes a link will get broken, but then re-established, such as doing the aforementioned forgetting to start the drive first.  When you double click the track it will try again and suddenly find it works again.  It can be a nuisance having to test each track this way.  You may find that Dougscript "List MIA" will help do this.
    http://dougscripts.com/itunes/
    I have not seen any successful automated way to re-form truly broken links.  You have to either do it by hand or just add the media again.  If you add the media again some things will be re-set such as date added (obviously), playcount, etc.  I don't use any of those so it doesn't matter to me if I have to do this (and there are tricks to storing them in places where they will be kept).
    Why they got broken? One reason mentioned before.  Have you re-named anything or moved it?  Have you ever had multiple drives with the same name plugged in?

  • How can I prevent Podcast Maker from showing direct link to media files?

    I'm brand-new to podcasting and to Podcast Maker for Mac, but I finally created a podcast (after 3 hours of trying to figure out how to get the thing to upload to the correct sub-directory).
    My question is: When I look at my feed in Firefox, I see so-called 'media links' to all my original mp3's, as well as the links I specified to the web pages where the mp3's are embedded inside my site content.
    Is there anyway to keep those media links from showing up in the feed? If people access my mp3's directly without visiting my website, it defeats the whole purpose for me creating the podcast in the first place.
    Thanks for any help!
    Brian

    I think I may have to look into a redirect line in my htaccess file so that direct loads of my mp3's route through my website page.
    If you do this you may find iTunes won't read the files, so I should test carefully on one file first if possible.

  • Premiere Overwriting Media Files

    Having a serious problem. Editing a sequence with video footage from a Canon 5D and 7D, and an audio track in WAV format from a Xoom recorder. Attempting to cut the audio to replace camera audio.
    After working with the project for a couple of days, Premiere appears to have overwritten a number of the ORIGINAL audio files on the hard disk. The affected clips in the timeline appear with bold hashmarks through them (the track is not locked, it is only a random selection of clips in the timeline that are effected). When the sequence plays, there is no audio from these clips. They no longer display a waveform in the source monitor.
    Further, the link to the orginal media is no longer present (the opotion to "reveal in finder" or "reveal in Bridge" in the project panel is greyed-out.
    When I search in the media file folders on the har disk, I find that the original files have been changed at the time the clips became inaccesible. When I attempt to play them in Quicktime or Quickview them, they open showing no contents (0.00 start time and 0.00 duration), though the files still display a file size (i.e. 7mb).
    We have replicated this problem storing our project (and its corresponding media folders) both on a shared raid drive on a workstation and on a striped raid drive on a shared server directory.
    Hardware/software info as follows:
    Editing performed on an iMac i7 2.93 ghz, 8 GB ram, ATI Radeon HD 5750/1GB, Premiere Pro CS 5.03
    Files located on a Mac Pro Server 3.2 ghz Quadcore, 8 GB ram running OS X Server 10.6.7 with a 2 TB Raid 1 (2 x 1 TB Drives Striped).
    Previously the files were on a Mac Pro Workstation, OS X 10.6.7 with a shared 4 TB Raid 1 (2 x 2 TB Drives Striped)
    Any help would be GREATLY appreciated!
    Thanks,
    David Breen
    Creative Director
    Canadian Forces School of Aerospace Studies
    Department of National Defence
    Government of Canada

    Premiere may be non-destructive, but I have had it break files before, in a manner similar to what you're describing. In my experience, this has been tied to the "Write XMP ID to Files on Import" option in Edit > Preferences > Media.
    With that option enabled, Premiere will write some metadata into an imported file which it then uses to keep track of the file as it travels through the Adobe applications. I've had a few instances--both with specific file formats (SWF is an example) and with random individual files--where that process effectively broke files both in Premiere and on the desktop. I've actually rescued a few files by opening them up in a text editor, deleting the metadata (it's visible as XML), and resaving the file--it imports and plays properly, then. Of course, if you don't disable the "Write XMP ID" option, it happens all over again.
    Not saying this is specifically what is happening here, but here's a test if you're feeling enterprising:
    Find a file (WAV, for example) that hasn't been imported into Premiere yet. Make a copy of it with Explorer.
    Import one of the copies into Premiere, making sure the "Write XMP ID" option is checked before you do so.
    Grab and install WinMerge, which is a great little program for comparing two files. It will have an option to add an Explorer context menu item to "Compare" files--this makes it easy to do just that.
    Using WinMerge, compare the imported and the not-yet-imported WAVs; near the top of the file that was imported, you should see a few lines of XML data, while the file that wasn't imported won't have this. WinMerge keeps the scrolling synced so you can easily see differences between the two files. The rest of the file will be all binary mish-mash, but you should be able to see where the metadata is inserted--make a note of that.
    With Premiere close, find one of your "damaged" WAVs (make a copy of it, just to be safe), and open it up in a text editor; I'm partial to Notepad++. Pretty quickly, you'll be able to see the injected XML metadata. Simply select it and delete, making sure to delete only the parts that weren't in the non-imported file above. It should be pretty clear where that is, but just in case, that's why we made a duplicate first.
    Once you delete the metadata, simply save the file, and try playing it back in whatever player didn't work correctly before. If it works (here's hoping!), give it a shot in Premiere. If it works there, I'd suggest fixing all your broken WAVs, and then opening them in an audio editor of one sort another and saving to new files (same format). This will basically just repackage the contents of the file in a new container that hopefully won't break again if you re-enable the "Write XMP ID" option (which is a good idea).
    If that doesn't work... well... we'll cross that bridge later

  • How to stop media file

    Iam working on JMF ,and Iam trying to build an application on JMF ,In which There are three buttons on JFrame .
    I want that If anybody can help me out ,If I click one button the media file should run and when I click second button new media file should run after stoping first media file.
    here media file ref. to video.
    can anybody help me
    Thanx in advance

    To stop media file u can use the stop() method or the stopAndDeallocated() method in the media player that is run the media file
    mediaplayer.stop();
    mediaplayer.stopAndDeallocate();
    if u want to pause the mediaplayer u have to save the time of the media and set it when u want to play it again.
    pausemediaplayer.stopAndDeallocate();
    Timer timer = mediaplayer.saveMediaTime();
    playmediaplayer.setMediaTime();
    mediaplayer.start();

  • OverDrive Media files cannot be used on iPods or Mac computers

    Our local library at "'librariesonthego.library.on.ca" offers audiobooks on loan. Regretfully it seems I can't use my iMAC G5 and iPod nano to download & play the audiobooks because the audiobooks use DRM technology from Microsoft which is not compatible with iPods or OS-X. In order to take advantage I must use a PC and I will need to purchase another mobile player device.
    The library has posted the following notice:
    "+At this time, OverDrive Media files cannot be used on iPods or Mac computers.+
    +Our media titles, provided by OverDrive, Inc., use DRM (Digital Rights Management) protection technology from Microsoft Corporation. Unfortunately the iPod (and Mac) currently support neither DRM-protected Windows Media Audio (.wma) files nor Windows Media Video (.wmv) files.+
    +OverDrive, along with hundreds of online media providers, is hopeful that Apple and Microsoft can reach an agreement that would enable support for Microsoft-based DRM-protected materials on the iPod/Mac."+
    Apple is usually on the forefront of such digital media developments and, it can be argued, it's work in this area is the reason for it's current success. Accordingly it seems a shame that
    Am I missing some obvious point or is Apple actually an unwitting barrier to greater and more prevalent uses of it's own hardware and services?
    What do others think of this?
    vschaick

    Even though Overdrive now has MP3 audio books, you still can't download from the public library (or any library) with your Mac because the MP3 books still require Overdrive Media Console, which runs only on Windows. Overdrive claims that they will be releasing a Mac version of the Media Console sometime this year. I'll believe it when I can run it.

  • Windows media file in itunes

    Can i play my windows media player file directly on itunes.
    if yes How?
    Can i transfer/copy the media file using a pendrive on to the macbook air?

    Hello there, shivampuri.
    The following Knowledge Base article offers up what files are compatible and playable with iTunes:
    iTunes: Compatible Audio File Types
    http://support.apple.com/kb/ta44475
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • Windows media file on itunes

    Can i play my windows media player file on itunes directly.
    if yes how?
    Can i not use a pendrive to transfer or copy the file?

    Hello shivampuri
    For a list of compatible formats that iTunes can play, check out the article below.If you need to convert the files if they are audio, the second article will sort you out. 
    iTunes: Compatible Audio File Types
    http://support.apple.com/kb/ta44475
    Importing Windows Media Audio files with iTunes for Windows
    http://support.apple.com/kb/HT1844
    Regards,
    -Norm G.

  • Wave vs Windows Media File sizes

    I installed iTunes on my Windows PC. I have a tune on my PC that is a Windows Media File that is 4626 kb. I imported the tune to iTunes and it converted it to Wave Sound and the file size is now 50,665 kb which is more than ten times bigger than the Windows Media file. As a test I then did this with a couple of albums and the same thing happened with all the selections on each album. It seems like I need ten times the disk space when using iTune than when using Windows.
    Can anyone explain what is happening here.
    Thanks
    Ted

    WMF (and MP3 and AAC) is a compressed and lossy format. You lose sound quality.
    WAV is not. A WAV is the same size as the file on a regular audio CD, usually ~35-75 MB.
    When you convert from a lossy format (WMF) to lossless format (WAV) the quality will be the same.
    If you convert between WMF/AAC/MP3, you quality will go down each time.
    When you convert between formats, you should always start off with the best possible quality (WAV or AIFF or CD).
    With iTunes the default format is AAC 128 kbps.
    This is a good compromise between file size and sound quality.
    AAC is a higher quality sound when using the same bitrate as an MP3.
    AAC and MP3 will be very close to the same file size when using the same bitrate.
    However, 128 kbps AAC will sound at least as good as a 160 kbps MP3 and the AAC will be about 2/3 the size.
    I use AAC 160 kbps. I can definitely hear the difference between 128 and 160 kbps AAC.
    If you are importing from CDs, you should use AAC 128 kbps (but I recommend 160 kbps).
    Open iTunes prefs -> Advanced -> Importing.
    This is where you can change the Import settings.
    (see below)

Maybe you are looking for

  • Error when Launching Office 365 Pro Plus in Remote Desktop Services

     Hello, I have Windows Server 2008 R2 and I have installed Office 365 pro plus volume license but I keep receive the error when I launch the product  I receive this error "This Copy of Microsoft Office 2013 cannot be used on a computer running Termin

  • Planning using a collective purchase order (pull)

    Dear all, Could anyone please give me a little bit of details for this 'pull' process? How do we create a Warehouse Order? How do we create a Collective PO with reference to the Warehouse Order? And how do we distribute the merchandise at GR with ref

  • How to send Subtopic Message From Server-Side to Client ?

    I'm new at flex and i have a new question about Flex Message Service. How to send messages from Server-Side Java Code with Subtopic? For example. I customed a Flex Message Adapter in Tomcat Server , with this Adapter , i can send message to Client wi

  • IOS 8 & Bose Bluetooth

    I have an iPhone 5s & Bose Bluetooth headset. Before upgrading to iOS 8 & 8.0.2, I could answer a call on my headset by turning it on and the call would be routed to the headset. Now, in iOS 8.0.2, when I turn my headset on to answer, the call is ans

  • Help with flexible panels in Accordian

    I can't seem to get my panels to work as flexible when viewed in a browser. The scroll bars are gone, but only the first line of text shows up. Here's what I tried... I changed CSS of AccordianPanelContent to this... .AccordionPanelContent {      ove