-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Temp Folder Permissions Denied on Windows 10 #15
Comments
I'm having the same issue, any luck? |
No, I had to try it on linux. The code worked flawslessly but the output file is zero byte. Let me know if you had any luck |
Interesting, still no luck on win32 but I'll try to run it on a nix box and see what happens, I'll let you know what happens. |
ok, got it to work on Linux as well but the same issue, however I think I know why it's not working. The Speech API is no longer available for the public. I was trying to get my own API key but there doesn't seem to be away to do that unless you're working on the Chromium project. |
close the .flac file before running ffmpeg on it. temp = tempfile.NamedTemporaryFile(suffix='.flac') command = ["ffmpeg", "-y", "-i" , self.source_path, return open(temp.name, "rb").read() |
temp = tempfile.NamedTemporaryFile(suffix='.flac', delete=False) |
Tks you |
I have the same problem but i use Vista, how should i edit the autosub_app? |
I solved it by only change temp = tempfile.NamedTemporaryFile(suffix='.flac', delete=False) Thanks very much for the help |
I am running into this problem I don't know what to do
The text was updated successfully, but these errors were encountered: