-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
⚡️[0.2.6] Enhanced Video Orientation Support and Ended support for Py…
…thon `3.7.x` legacies [#49] **Core Improvements:** - ♻️ Ended support for Python 3.7.x legacies (Fixes #48). - 🔥 Removed Python 3.7 support from CI/CD pipelines. - ✨ Added Python 3.11 support across CI/CD configurations. - 🙈 Updated paths to ignore additional file types in CI/CD Pipelines and Codecov: - Added `*.html`, `*.js`, `*.css`, `mkdocs.yml`, `README.md`. - 👷 Changed runner from `ubuntu-latest` to `ubuntu-20.04` in GitHub Actions. - 🎨 Updated dependencies in `docs_deployer.yml` for better readability. - 💚 Modified Mike deploy commands to use `--alias-type=copy` instead of deprecated `--no-redirect`. **Sourcer Enhancements:** - ⚡️ Added new parameters to metadata to display video orientation (Fixes #39). - 🏗️ Updated `__extract_resolution_framerate` function to also return video orientation. - ✨ Added new regex pattern and filter for accurate video orientation extraction. - 🚩 Added `source_video_orientation` parameter (default `0.0`). - 🚩 Added `output_orientation` parameter (default `0.0`). - 🔨 Added new class parameters for handling video orientation values. **FFhelper Enhancements:** - ✨ Added support for SRTP/RTSPS in `is_valid_url` function (Fixes #50). - ⚡️ Enhanced `is_valid_url` to support `rtsp` and `rtsps` protocols. - 💬 SRTP/RTSPS extends RTSP/RTP to encrypt video/audio data using ciphers like AES with a 128-bit key. **FFhelper Bug Fixes:** - 🐛 Fixed regex expression bugs in `get_supported_demuxers` method. - ⚡️ Simplified regex search for demuxers and handled multi-line output correctly. - 🎨 Improved output extraction logic to handle commas within demuxer names. - 👷 Improved regex pattern in `get_supported_demuxers` function. **Maintenance Updates:** - 🔖 Bumped version to 0.2.6. - 🩹 Updated patch for `long_description`. **CI Fixes:** - 💚 Fixed Assertion error with WriteGear API. - 💚 Removed unsupported darwin platform from `test_FFdecoder_params` test.
- Loading branch information
Showing
11 changed files
with
177 additions
and
96 deletions.
There are no files selected for viewing
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,6 @@ ignore: | |
- "docs" | ||
- "scripts" | ||
- "setup.py" | ||
- "**/*.md" | ||
- "**/*.md" | ||
- "**/*.html" | ||
- "mkdocs.yml" |
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
Oops, something went wrong.