static coqui.Coqui.download_file_sync(url: str, f: BinaryIO, /, chunk_size: int = 5242880) Convenience function to download an audio file from a URL. Parameters:¶ url: str¶URL of file to download. f: BinaryIO¶open file with mode=”wb” chunk_size: int = 5242880¶Optional chunk_size for streaming response to file. Defaults to 5MB.