-
Notifications
You must be signed in to change notification settings - Fork 888
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
minor: fix ffmpeg 7 compatibility #1274
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
totallytavi
commented
May 19, 2024
- Add capture for all whitespace
- Change copied from Fix ffmpeg 7 compatibility #1265, minus the style changes
- Fixes Fix to Output format [***] is not available #1266, ffmpeg : ffmpeg error :Output format xxx is not available #1273
* Add capture for all whitespace * Change copied from fluent-ffmpeg#1265, minus the style changes
njoyard
approved these changes
May 19, 2024
Pull Request Test Coverage Report for Build 9143973524Details
💛 - Coveralls |
Fix published in 2.1.3 |
alexger
added a commit
to alexger/node-fluent-ffmpeg
that referenced
this pull request
May 23, 2024
when running with ffmpeg 7, some formats are not properly parsed by `getAvailableFormats` and thus can not be used. ffmpeg 7 adds a new column to the output of `-formats` command: ``` ..d = Is a device ``` fluent-ffmpeg#1274 partially addressed that issue, but only for formats where the new column is a space. Formats that have `d` do not match the existing regex and are silently ignored. One example is `lavfi` format which right now can not be used due to this issue. The fix is to ammend the parsing regex to expect an optional space or 'd'. This way both new and old versions of ffmpeg are supported. I've added a test for `lavfi` which fails without this fix when run with ffmpeg 7.
5 tasks
1 task
gkp1
added a commit
to gkp1/whatsapp-web.js
that referenced
this pull request
Jan 20, 2025
…[email protected] -> 2.1.3 Fixes fluent-ffmpeg "Error: Output format webp is not available" if the user has Ffmpeg 7 installed and wwebjs tries to generate a webp sticker. Fixed in 2.1.3: fluent-ffmpeg/node-fluent-ffmpeg#1274
7 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.