東坡下載:內(nèi)容最豐富最安全的下載站!

幫助|文件類型庫|最新更新|下載分類|排行榜

編程相關(guān)破解相關(guān)編程工具反編譯安裝制作程序源碼軟件補(bǔ)丁數(shù)據(jù)庫Visual Studiovc++visualbasicdreamweaver

首頁編程開發(fā)程序源碼 → java xuggler獲取視頻代碼 (獲取時長,分辨率,高寬,碼率)

java xuggler獲取視頻代碼

java xuggler獲取視頻代碼(獲取時長,分辨率,高寬,碼率)

  • 大。45M
  • 語言:中文
  • 平臺:WinAll
  • 更新:2016-08-25 08:56
  • 等級:
  • 類型:程序源碼
  • 網(wǎng)站:暫無
  • 授權(quán):免費(fèi)軟件
  • 廠商:
  • 產(chǎn)地:國產(chǎn)軟件
好用好玩 50%(0)
坑爹 坑爹 50%(0)
軟件介紹軟件截圖相關(guān)軟件軟件教程網(wǎng)友評論下載地址

相關(guān)推薦: xuggler jar包

    package cn.outofmemory.xuggler.intro;


    import com.xuggle.xuggler.ICodec;

    import com.xuggle.xuggler.IContainer;

    import com.xuggle.xuggler.IStream;

    import com.xuggle.xuggler.IStreamCoder;


    public class VideoInfo {


        private static final String filename = "c:/myvideo.mp4";


        public static void main(String[] args) {


            // first we create a Xuggler container object

            IContainer container = IContainer.make();


            // we attempt to open up the container

            int result = container.open(filename, IContainer.Type.READ, null);


            // check if the operation was successful

            if (result<0)

                throw new RuntimeException("Failed to open media file");


            // query how many streams the call to open found

            int numStreams = container.getNumStreams();


            // query for the total duration

            long duration = container.getDuration();


            // query for the file size

            long fileSize = container.getFileSize();


            // query for the bit rate

            long bitRate = container.getBitRate();


            System.out.println("Number of streams: " + numStreams);

            System.out.println("Duration (ms): " + duration);

            System.out.println("File Size (bytes): " + fileSize);

            System.out.println("Bit Rate: " + bitRate);


            // iterate through the streams to print their meta data

            for (int i=0; i<numStreams; i++) {


                // find the stream object

                IStream stream = container.getStream(i);


                // get the pre-configured decoder that can decode this stream;

                IStreamCoder coder = stream.getStreamCoder();


                System.out.println("*** Start of Stream Info ***");


                System.out.printf("stream %d: ", i);

                System.out.printf("type: %s; ", coder.getCodecType());

                System.out.printf("codec: %s; ", coder.getCodecID());

                System.out.printf("duration: %s; ", stream.getDuration());

                System.out.printf("start time: %s; ", container.getStartTime());

                System.out.printf("timebase: %d/%d; ",

                     stream.getTimeBase().getNumerator(),

                     stream.getTimeBase().getDenominator());

                System.out.printf("coder tb: %d/%d; ",

                     coder.getTimeBase().getNumerator(),

                     coder.getTimeBase().getDenominator());

                System.out.println();


                if (coder.getCodecType() == ICodec.Type.CODEC_TYPE_AUDIO) {

                    System.out.printf("sample rate: %d; ", coder.getSampleRate());

                    System.out.printf("channels: %d; ", coder.getChannels());

                    System.out.printf("format: %s", coder.getSampleFormat());

                } 

                else if (coder.getCodecType() == ICodec.Type.CODEC_TYPE_VIDEO) {

                    System.out.printf("width: %d; ", coder.getWidth());

                    System.out.printf("height: %d; ", coder.getHeight());

                    System.out.printf("format: %s; ", coder.getPixelType());

                    System.out.printf("frame-rate: %5.2f; ", coder.getFrameRate().getDouble());

                }


                System.out.println();

                System.out.println("*** End of Stream Info ***");


            }


        }


    }


    PC官方
    安卓官方手機(jī)版
    IOS官方手機(jī)版

    java xuggler獲取視頻代碼截圖

    下載地址

    java xuggler獲取視頻代碼 (獲取時長,分辨率,高寬,碼率)

    熱門評論
    最新評論
    發(fā)表評論 查看所有評論(0)
    昵稱:
    表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
    字?jǐn)?shù): 0/500 (您的評論需要經(jīng)過審核才能顯示)

    編輯推薦

    本類軟件必備

    編程UltraEditvc++6.0Notepad++編譯VBILSpyHopper數(shù)據(jù)MySQLoracleaccess設(shè)計(jì)DreamweaverfireworksFlash

    報錯

    請簡要描述您遇到的錯誤,我們將盡快予以修正。

    轉(zhuǎn)帖到論壇
    輪壇轉(zhuǎn)帖HTML方式

    輪壇轉(zhuǎn)帖UBB方式