-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🐛 FFdecoder: Refactored Process Termination and various important upd…
…ates. [#53] -⚡️Refactored process termination in terminate method. (Fixes #41) - 🚀 Changed process termination from `kill` to `terminate` if the process is still running. - Ensures that the process is terminated gracefully using `terminate()` instead of `kill()`. - The `terminate()` method sends the `SIGTERM` signal to a process, which typically allows for a graceful shutdown. On Unix, this uses the `SIGTERM` signal, while on Windows, it uses `TerminateProcess()`. - 🎨 Simplified conditional check using short-circuiting. Docs: - ✨ Added context and detailed instructions for Input and Output Seeking methods. (Fixes #44) - 📝 Introduced `Input Seeking` and `Output Seeking` sections with pros, cons, and usage examples. - 🚸 Added warning about using output seeking with filters for accuracy. - 🎨 Improved overall document structure and readability. Setup.py: - 🗑️ Ended support for Python 3.7.x legacies (Fixes #48) - 🏗️ Increased `python_requires` to `3.8` and above. - 🔥 Removed depreciated Python-3.7 from metadata.
- Loading branch information
Showing
4 changed files
with
177 additions
and
22 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