You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, thanks for this nice script.
I've modified it to work with more formats, the only problem I've found where the 4 digit extensions of "webm", it seems the script used self.output_path = self.video_path[:-4] which removed 4 last characters to add a new extension ("." included). The webm extension has 4 letters + 1 ".", meaning that output thumb files where named "file..jpg" if they where made from a .webm source (this is because self.output_path = self.video_path[:-4] would not remove the "." character)
Here are the small modifications I've made in case you want to modify the script:
Hi there, thanks for this nice script.
I've modified it to work with more formats, the only problem I've found where the 4 digit extensions of "webm", it seems the script used
self.output_path = self.video_path[:-4]
which removed 4 last characters to add a new extension ("." included). The webm extension has 4 letters + 1 ".", meaning that output thumb files where named "file..jpg" if they where made from a .webm source (this is becauseself.output_path = self.video_path[:-4]
would not remove the "." character)Here are the small modifications I've made in case you want to modify the script:
worker.py:
main.py:
The text was updated successfully, but these errors were encountered: