if I look the property of a flash video by right clicking and selecting property , it tells me that this video is:

Type: Flash video (video/x-flv) I really would like to have the same result in java library that I am using called xuggle. at list is there a way to identify all flv videos with xuggle?

Thank you

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

// first we create a Xuggler container object IContainer container = IContainer.make();

// open the video container.open("myvideo.flv", IContainer.Type.READ, null);

this will return shot name like "flv" String myvideoFormat = container.getContainerFormat().getInputFormatShortName();

or

this will return the long name String myvideoFormat = container.getContainerFormat().getInputFormatLongName();

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.