-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
System.NotSupportedException: Specified method is not supported (MacOS) #89
Comments
Does it work if its version 6.1.1? |
doesn't look like it, still getting the same error
for anyone else, downloaded 6.1.1 using https://gist.github.com/isimaka/0a43cbec585a019d3c4550068a288475 side note it looks like |
static builds don't expose the shared libraries. Homebrew specifies the shared libraries here: # Build and install additional FFmpeg tools
system "make", "alltools"
bin.install (buildpath/"tools").children.select { |f| f.file? && f.executable? }
(share/"ffmpeg").install buildpath/"tools/python" via ChatGPT:
You can try passing the method parameter with those paths. |
The latest nuget package requires FFmpeg version 7. See the Windows instuctions for the version. |
Thanks for the reply (apologies for my slow reply!). I ended up downgrading to an older ffmpeg version and initialised with |
Getting this same problem on Win11 build 26100 with ffmpeg shared 7.0 installed exactly per the installation instructions and then also manually added to the system path. |
That's weird. I'm on exactly the same Windows version and have been using the FFmpeg package constantly for the last few weeks.
Is there a chance you have another ffmpeg version installed?
|
And unless I manually put it on the path, |
If you do |
I cloned the repo and ran |
On my machine:
Maybe there's an incorrect version of the FFmpeg.AutoGen nuget package somewhere but I'm only guessing. .NET and native libraries never work that well together. These types of issues have always been a plague. |
Hi there,
Sorry in advance if i've missed something obvious, but i've been through the existing issues for this and i'm still hitting the
NotSupportedException
Environment
Macos - 15.0.1 (24A348)
M1
I've downloaded ffmpeg from brew
brew install ffmpeg@6
(think i need to use v6, rather than latest, see #70 (comment)). I've also tried with v4 and latestthat installs it to
/opt/homebrew/opt/ffmpeg@6/bin
i've then set this in the
Initialise
FFmpegInit.Initialise(FfmpegLogLevelEnum.AV_LOG_TRACE, libPath: "/opt/homebrew/opt/ffmpeg@6/bin", logger);
and have also tried
lib
FFmpegInit.Initialise(FfmpegLogLevelEnum.AV_LOG_TRACE, libPath: "/opt/homebrew/opt/ffmpeg@6/lib", logger);
either way i get the exception
The text was updated successfully, but these errors were encountered: