-
-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Audio languages are inverted #129
Comments
Haven't seen this before. That track order comes directly from Test script: import gi
import os
import sys
import urllib.parse
gi.require_version("Gst", "1.0")
gi.require_version("GstPbutils", "1.0")
from gi.repository import Gst
from gi.repository import GstPbutils
Gst.init(None)
fname = os.path.abspath(sys.argv[1])
uri = "file://{}".format(urllib.parse.quote(fname))
info = GstPbutils.Discoverer().discover_uri(uri)
print([x.get_language() for x in info.get_audio_streams()]) |
It returns |
I get |
Hi, with version 1.5, it looks like the languages from the preview menu are inverted.
In the attached test file, the tracks are English, Russian and French but gaupol shows them in the opposite order (the tracks themselves are in the right order but the languages don't match):
The text was updated successfully, but these errors were encountered: