mirror of
https://git.freebsd.org/ports.git
synced 2025-05-16 09:11:50 -04:00
Release notes: https://www.openshot.org/blog/2024/06/24/new_openshot_release_320/ Compatibility with FFMPEG 7.0 improved: build without errors, but there is an issue in the upstream bug-tracker related to the work of the software: https://github.com/OpenShot/libopenshot/issues/953#issuecomment-2131234669 PR: 278857
11 lines
534 B
Python
11 lines
534 B
Python
--- src/classes/logger_libopenshot.py.orig 2024-06-24 20:49:58 UTC
|
|
+++ src/classes/logger_libopenshot.py
|
|
@@ -59,7 +59,7 @@ class LoggerLibOpenShot(Thread):
|
|
debug_enabled = s.get("debug-mode")
|
|
|
|
# Set port on ZmqLogger singleton
|
|
- openshot.ZmqLogger.Instance().Connection("tcp://*:%s" % port)
|
|
+ openshot.ZmqLogger.Instance().Connection("tcp://localhost:%s" % port)
|
|
|
|
# Set filepath for ZmqLogger also
|
|
openshot.ZmqLogger.Instance().Path(os.path.join(info.USER_PATH, 'libopenshot.log'))
|