-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Problem with input file audio path format selection (gui.py) #602
Comments
Another issue due to the different behavior between Linux and Windows 😇 |
|
NOTE: My installed version on PySimpleGui is: 4.60.4 |
I think it's an OS-related problem, not PySimpleGUI |
Another problem... The checkboxes change when pressing on "infer"... other.mp4 |
|
Bug reports are appreciated, but note that you can also send PRs. 😴 |
I have never sent a pull request. I have no idea about how it works, but I'll try to see if I can figure it out... |
Add a basic platform check.
) * Fix #602 Add a basic platform check. * chore(pre-commit.ci): auto fixes * fix(gui): fix format selection for the input audio in non-windows --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: 34j <55338215+34j@users.noreply.github.com>
SVC version: 3.14.1
Currently, format selection for the input audio path file doesn't allow for format selection and filter shows no audio files.
The problem is on line 352 of gui.py
I solved it by putting, on line 352:
file_types=get_supported_file_types(),
instead of the current:
file_types=get_supported_file_types_concat(),
This solved the problem for me. See before and after videos.
Before:
before.mp4
After correction:
after.mp4
The text was updated successfully, but these errors were encountered: