-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Output file #17
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
Comments
I use redirection with Maybe you're experiencing buffering? Shell redirection to my knowledge by default uses output buffering, i.e. you will not see data as it is written by the program. Instead, data will be written to the file whenever there (according to the buffering implementation) is enough data. You can change the buffering with
One useful option imo would be to get the output without all model loading info (lines starting with |
Support for: - plain text - VTT - SRT
Only the transcribed/translted text is printed to stdout. This way, one can redirect the result to a file.
You can now output the results to multiple file formats. For example: ./main -m models/ggml-tiny.en.bin -f samples/jfk.wav -otxt -ovtt -osrt will generate Also, you can now redirect the results with |
Yeah, I thought it's related to buffering, too, @aufziehvogel. I think I waited for quite a while, though, and yet nothing showed up. Anyhow, thanks for letting me know about Thanks, @ggerganov! |
Support for: - plain text - VTT - SRT
Only the transcribed/translted text is printed to stdout. This way, one can redirect the result to a file.
Support for: - plain text - VTT - SRT
Only the transcribed/translted text is printed to stdout. This way, one can redirect the result to a file.
Hello there. Seems like redirecting the standard output with either
>
,>>
ortee
doesn't work. Would be nice to have an option to save the output to a specific file.The text was updated successfully, but these errors were encountered: