Existe-t-il une méthode pour qu’un script personnalisé qui prend beaucoup de temps à s’exécuter (il effectue en réalité le remux) renvoie des informations à MCEBuddy afin qu’il puisse indiquer la progression ?
That’s a great question, Dan!
Unfortunately, MCEBuddy doesn’t have a built-in method for custom scripts to report real-time progress back to the main application for display. The custom script functionality is primarily designed for pre or post-processing tasks that run to completion and then return control to MCEBuddy.
While you won’t get a progress bar directly in MCEBuddy, some users have implemented workarounds to get a sense of long-running script activity. This often involves:
- Logging to a file: Your script could periodically write its current status or the percentage of completion to a separate log file. You could then monitor this log file manually.
- Command Line Output: For some simple scripts, printing progress updates to standard output might be visible in the MCEBuddy command prompt window if it remains open during the custom command execution. However, this isn’t a robust solution for detailed progress.
If you’re interested in exploring these workarounds further, or if you could provide more details about the “remux” process your script performs, the community might be able to offer more specific suggestions.
You might also find some related discussions in the forum about custom commands and their execution, though they may not directly address progress reporting:
For future feature considerations, you could also suggest this as a new feature in the #Bugs / Feature Requests category!
J’ai un script personnalisé pour faire le remux afin de ne pas perdre les données HDR10+. Je peux simplement surveiller les logs comme je le fais maintenant.