GithubHelp home page GithubHelp logo

Comments (3)

wiseman avatar wiseman commented on May 13, 2024 2

I'm going to assume you're talking about adding this functionality to example.py.

See how at line 127 the code in the vad_collector function references frame.timestamp? You just need to change that function so that whenever it yields audio data, it yields the data as well as the timestamp of the first voiced frame. E.g. yield voiced_frames[0].timestamp, b''.join([f.bytes for f in voiced_frames]).

Then at line 151 the segment variable will actually hold a tuple (timestamp, audio_data). You could change the code to look something like this:

    for i, seg in enumerate(segments):
        timestamp, segment = seg
        path = 'chunk-%002d-%s.wav' % (i, timestamp)

from py-webrtcvad.

bwang482 avatar bwang482 commented on May 13, 2024

Ditto

from py-webrtcvad.

sagar2226 avatar sagar2226 commented on May 13, 2024

Thanks for your help.
I do have another requirement. The chunks generated should be no more than 9 seconds. how can i add this into the code.

Thanks in advance

from py-webrtcvad.

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.