Metadata-Version: 2.1
Name: pdg-mp3-converter
Version: 0.0.1
Summary: For converting mp4 files to mp3 and also mp3 files back to mp4
Home-page: https://github.com/PaulusDeGross/pdg-mp3-converter
Author: Paul Maerz
Author-email: maerzpaul06@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE

mp4 to mp3 converter / mp3 to mp4 converter by pdg

how to use:


1. convert mp4 to mp3
```python
from pdg-mp3-converter import converter

filepath = 'path to mp4 file'
filename = 'name of the file'

converter.mp4ToMp3(path=filepath, name=filename)

```

2. convert mp3 (must have been mp4 before) back to mp4
```python
from pdg-mp3-converter import converter

filepath = 'path to mp3 file'
filename = 'name of the file'

converter.mp3ToMp4(path=filepath, name=filename)

```

