Git Product home page Git Product logo

Comments (6)

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
Yes, that's right, it's not supported yet. If you have some changes to 
contribute, please attach them here for review! Thanks

Original comment by [email protected] on 10 May 2013 at 7:51

  • Changed state: Accepted
  • Added labels: Type-Enhancement
  • Removed labels: Type-Defect

from javacv.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
BTW, FFmpegFrameRecorder does support audio conversion, so it should be 
possible to refer to it and do something similar in FFMpegFrameGrabber.

Original comment by [email protected] on 11 May 2013 at 9:50

from javacv.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
I am going to upload the changes i've made to FFMpegFrameGrabber once i have it 
sorted.

Thanks

Original comment by [email protected] on 19 May 2013 at 4:27

from javacv.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
[deleted comment]

from javacv.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
Hi, I'm facing the same problem. Could anyone provide the fix of 
FFMpegFrameGrabber?
I really need it asap.

Thanks

Original comment by [email protected] on 20 Jul 2013 at 4:05

from javacv.

GoogleCodeExporter avatar GoogleCodeExporter commented on July 30, 2024
Hi, I'm desperate, I do not get sound on this file to sound good. The ringing 
sound is full of noise. Can someone help me out? or show me how I do it? Thank 
you very much.



       FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("c:\\com4j\\video.avi");
        //    Stream #0:1: Audio: ac3 ([0] [0][0] / 0x2000), 48000 Hz, stereo, fltp, 192 kb/s
        grabber.setSampleFormat(avcodec.AV_CODEC_ID_AC3);
        grabber.start();
        CanvasFrame cff = new CanvasFrame("Playing");

        System.out.println("Caneles de audio: " +grabber.getAudioChannels());
        System.out.println("Samplerate: " +grabber.getSampleRate());
        System.out.println("getSampleFormat: " +grabber.getSampleFormat());
        //AudioFormat audioFormat = new AudioFormat(grabber.getSampleRate(), 192, grabber.getAudioChannels(), true, false);
        AudioFormat audioFormat = new AudioFormat(grabber.getSampleRate(), 16, grabber.getAudioChannels(), true, true);

        DataLine.Info info = new DataLine.Info(SourceDataLine.class, audioFormat);
        SourceDataLine soundLine = (SourceDataLine) AudioSystem.getLine(info);
        soundLine.open(audioFormat);
        soundLine.start();


        while(true) {
            Frame frame = grabber.grabFrame();

            if(frame != null) {
                if(frame.image != null) {
                    cff.showImage(frame.image);
                }
                else if(frame.samples != null) {

                    FloatBuffer baSamples = (FloatBuffer) frame.samples[0];
                    //ByteBuffer byteBuffer = ByteBuffer.allocate(baSamples.capacity() * 4);

                    byte[] output = new byte[baSamples.capacity() * 4];
                    ByteBuffer.wrap(output).asFloatBuffer().put(baSamples);

                    soundLine.write(output, 0, output.length);

                }


            }
            else {
                break;
            }
        } 

Original comment by [email protected] on 30 Mar 2014 at 1:24

from javacv.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.