Git Product home page Git Product logo

Comments (4)

davidplowman avatar davidplowman commented on July 18, 2024

Hi, I think mostly the problem is that you're asking it to encode 2304x1296 @ 40fps which is beyond its capabilities. It will work better if you change the main stream format to YUV420 as this will save a pixel format conversion (so use main={"size": (2304,1296), "format": "YUV420"}) but even with this it won't achieve what you want.

My rule of thumb is that so long as there's not much else going on, you should get "close" to 1080p50. So you should certainly be able to manage 1080p40, or 2304x1296 @ 30fps. (2304x1206 is 44% larger than 1080p.)

A few other minor tips: when it drops an I-frame from the start of the circular buffer, it has to drop all the P-frames up to the next I-frame. So you generally find up to iperiod fewer buffers there than you might have expected. Also, by stopping the output before stopping the encoder you'll be losing any frames still queued up in the encoder. So maybe just drop the output.stop() - the output will be stopped anyway once the encoder is done.

from picamera2.

CodeTim24 avatar CodeTim24 commented on July 18, 2024

Thank you su much! It works way better. Could you tell me how to add the timestamps.txt while using circular output, too?

from picamera2.

davidplowman avatar davidplowman commented on July 18, 2024

Unfortunately I don't think the CircularOutput class has ever been made to support timestamps properly. It looks like it would need to store them in the fifo so that it can write them out later. I don't know if that's something you'd know how to change...?

from picamera2.

CodeTim24 avatar CodeTim24 commented on July 18, 2024

i'll have a look. Thanks

from picamera2.

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.