File tree Expand file tree Collapse file tree 3 files changed +2
-3
lines changed
src/audio_convertio/classes Expand file tree Collapse file tree 3 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -48,3 +48,4 @@ $ audio_convertio <path_to_audios_directory> <input_format> <output_format>
48
48
- Python3
49
49
- Pytest
50
50
- Pydub
51
+ - Multiprocessing
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ long_description = file: README.md
8
8
long_description_content_type = text/markdown
9
9
license = MIT
10
10
platforms = any
11
+ download_url = ' https://github.com/AudioConvertio/file-converter/archive/refs/tags/v0.2.0.tar.gz'
11
12
classifiers =
12
13
Programming Language :: Python :: 3
13
14
License :: OSI Approved :: MIT License
Original file line number Diff line number Diff line change @@ -34,9 +34,6 @@ def convert_files_sequential(self) -> None:
34
34
def convert_files_parallel (self ) -> None :
35
35
"""Iterates over every file in the dir with the input_format and
36
36
converts it to the output_format in a parallel way
37
-
38
- Args:
39
- output_format (str): the file output format
40
37
"""
41
38
file_paths = []
42
39
for file in os .listdir (self .audios_dir ):
You can’t perform that action at this time.
0 commit comments