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
ofGstUtils.cpp - line 103 :
putenv(("GST_PLUGIN_PATH_1_0=" + ofFilePath::join(gst_path, "lib\gstreamer-1.0") + ";.").c_str()); returns a path with a '/' and not a '', windows style...
Dirty fix is to do that: putenv("GST_PLUGIN_PATH_1_0=C:\gstreamer\1.0\x86\lib\gstreamer-1.0;.");
Once everything's into place (path, dll and all) - the result is quite frustrating... - going back to linux :)
The text was updated successfully, but these errors were encountered:
ofGstUtils.cpp - line 103 :
putenv(("GST_PLUGIN_PATH_1_0=" + ofFilePath::join(gst_path, "lib\gstreamer-1.0") + ";.").c_str()); returns a path with a '/' and not a '', windows style...
Dirty fix is to do that: putenv("GST_PLUGIN_PATH_1_0=C:\gstreamer\1.0\x86\lib\gstreamer-1.0;.");
Once everything's into place (path, dll and all) - the result is quite frustrating... - going back to linux :)
The text was updated successfully, but these errors were encountered: