GithubHelp home page GithubHelp logo

Live camera feed about scikit-video HOT 9 CLOSED

scikit-video avatar scikit-video commented on May 17, 2024 3
Live camera feed

from scikit-video.

Comments (9)

beyondmetis avatar beyondmetis commented on May 17, 2024

Do you mean from a webcam, over a network, or both?

from scikit-video.

AndersonReyes avatar AndersonReyes commented on May 17, 2024

Webcam. I haven't looked up how to implement it myself but I can give it a try. Right now we have to use opecv on top of scikit video just for live webcam feed.

from scikit-video.

beyondmetis avatar beyondmetis commented on May 17, 2024

This is interesting. There's nothing stopping us from implementing this, since the ffmpeg backend can support this by itself. It's just a matter of wrapping a function around ffmpeg/libav.

According to https://trac.ffmpeg.org/wiki/Capture/Webcam, the live feed can be dumped using:
ffmpeg -i /dev/video0 output.mp4

On windows:
ffmpeg -y -f vfwcap -i 0 output.mp4

from scikit-video.

AndersonReyes avatar AndersonReyes commented on May 17, 2024

word I'll start there

from scikit-video.

AndersonReyes avatar AndersonReyes commented on May 17, 2024

Hmmm from what I see the feed is always dumped to output file so then we'd be dumping and reading concurrently and using a generator to get the frame

from scikit-video.

beyondmetis avatar beyondmetis commented on May 17, 2024

Have you considered pipes? That's what scikit-video currently uses. FFmpeg actually gets called like:

ffmpeg -i inputfile.mp4 -

The '-' means pipe to stdout. I'm not sure how this will be handled internally when providing a webcam as input. It might just work :)

from scikit-video.

AndersonReyes avatar AndersonReyes commented on May 17, 2024

That or should be able to read the raw video data coming in anf convert it to numpy arrays. Hmm I think I got a solution give me a few weeks (it's finals for me lol..undergrad problems lol) I'll hack at it.

from scikit-video.

beyondmetis avatar beyondmetis commented on May 17, 2024

Actually, you can pipe std out right into numpy arrays. This is exactly what scikit-video does under the hood :)

from scikit-video.

beyondmetis avatar beyondmetis commented on May 17, 2024

I believe skvideo supports this in Linux now. Not sure about Windows or Mac

from scikit-video.

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.