Git Product home page Git Product logo

Comments (16)

beyondmetis avatar beyondmetis commented on May 20, 2024 4

If "which ffmpeg" can't find ffmpeg, then scikit-video can't find it. This simply means that ffmpeg is not found by looking into the $PATH directories. If you aren't doing a local build of ffmpeg, then you should install ffmpeg through your package manager.

Have you tried (assuming you use ubuntu):
sudo apt-get install ffmpeg

For mac, there is likely a brew install option, though I'm only familiar with local installs for macs.

from scikit-video.

beyondmetis avatar beyondmetis commented on May 20, 2024

Do you have ffmpeg installed? Can you post the output to running ffmpeg in
the terminal?
On Aug 12, 2016 10:30 PM, "preksha12" [email protected] wrote:

While running the code

import skvideo.io
import skvideo.datasets
videodata = skvideo.io.vread(skvideo.datasets.bigbuckbunny())
print(videodata.shape)

I am getting error AssertionError: Cannot find installation of real FFmpeg
(which comes with ffprobe).


You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
#13, or mute the
thread
https://github.com/notifications/unsubscribe-auth/AIAHzVDnxJ8lk_VsrI5KCGgXUKoVfCKyks5qfVZ3gaJpZM4JjnGQ
.

from scikit-video.

preksha12 avatar preksha12 commented on May 20, 2024

When I am running whereisffmpeg or which ffmpeg it does not produces any output.
Is there any other method to find out if ffmpeg is installed or not?

from scikit-video.

preksha12 avatar preksha12 commented on May 20, 2024

Thank you for your help and I was able to install ffmpeg and now below code
import skvideo.io
import skvideo.datasets
import skvideo.utils

filename = skvideo.datasets.bigbuckbunny()

print("Loading only luminance channel")
vid = skvideo.io.vread(filename, outputdict={"-pix_fmt": "gray"})[:, :, :, 0]
print(vid.shape)
print("Enforcing video shape")
vid = skvideo.utils.vshape(vid)
print(vid.shape)
print("")

print("Loading only first 5 luminance channel frames")
vid = skvideo.io.vread(filename, num_frames=5, outputdict={"-pix_fmt": "gray"})[:, :, :, 0]
print(vid.shape)
print("Enforcing video shape")
vid = skvideo.utils.vshape(vid)
print(vid.shape)
print("")

is giving correct output.

So now the problem which remains is I want to use skvideo.IO.VideoCapture function and it is not described in any of the skvideo folder so when I use videocapture(filename) then error is
"cannot import name videocapture" so where can I get videocapture definition,Please suggest

from scikit-video.

beyondmetis avatar beyondmetis commented on May 20, 2024

Ah, at this time, I and @aizvorski are working on merging the old scikit-video codebase in with a future release. In other words, we will include the VideoCapture function, but it's not yet included at this time.

from scikit-video.

jigyasubagai avatar jigyasubagai commented on May 20, 2024

how to install ffmpeg (using python 3.5 and windows os )
getting the error as
AttributeError: module 'skvideo.io' has no attribute 'FFmpegReader'

from scikit-video.

jigyasubagai avatar jigyasubagai commented on May 20, 2024

hi how to install FFmpeg (python3.5 and Ubuntu 16.04 ) .
The error reads as
reader = skvideo.io.FFmpegReader(args["input"],
AttributeError: module 'skvideo.io' has no attribute 'FFmpegReader'
please suggest

from scikit-video.

beyondmetis avatar beyondmetis commented on May 20, 2024

What version of skvideo do you have installed?

from scikit-video.

jigyasubagai avatar jigyasubagai commented on May 20, 2024

resolved the installation , the issue was that i was not building oit from source ,thereafter i used these commands
run chmod 777 init.sh
run sh init.sh
it worked fine

from scikit-video.

jigyasubagai avatar jigyasubagai commented on May 20, 2024

thanks for help @beyondmetis

from scikit-video.

beyondmetis avatar beyondmetis commented on May 20, 2024

I don't understand where init.sh comes from, and I know that scikit-video works from the pip installation so building is only necessary when you want the latest bug fixes. I'm confused, but I'm glad you were able to fix your problem.

from scikit-video.

YifZhou007 avatar YifZhou007 commented on May 20, 2024

I have installed ffmpeg and posted the output to running ffmpeg in the terminal: /usr/bin/ffmpeg,but my pycharm: Cannot find installation of real FFmpeg.

from scikit-video.

beyondmetis avatar beyondmetis commented on May 20, 2024

Does /usr/bin/ffprobe exist?

from scikit-video.

YifZhou007 avatar YifZhou007 commented on May 20, 2024

I have existed it .

from scikit-video.

YifZhou007 avatar YifZhou007 commented on May 20, 2024

All of [trian_*.py] have the same question,i want modify io.py.vreader() 0.0

from scikit-video.

beyondmetis avatar beyondmetis commented on May 20, 2024

You can try setting the ffmpeg path manually. Check out the documentation.

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.