repair aac files
Project description
aac Repair
repair aac and aacPlus files grabbed from the internet
Info
Aac files consist of multiple segments, frames. Each frame has a header and payload. Browser get stuck if aac file frame is defective and will not start to play or refuse to play next aac file. This will stop the entire playlist. File gets trimmed from head to tail, to remove defective frames. Cut off byte count is shown in the summary.
Usage
from aacrepair import AacRepair
# 'r' before a string tells the Python interpreter to treat backslashes as a literal (raw) character
aacRepair = AacRepair(r"F:\propaganda-podcasts")
aacRepair.repair()
Instantiate AacRepair class with two possible arguments, mandatory folder path and optional dictionary.
- No dictionary provided. Folder path is used as list to import files into a dictionary AND store repaired files.
- A dictionary of files is provided. Folder path is used to store repaired files. (best use on web server)
Web Server
- endpoint converts uploaded files from file storage type to bytestream, use .read() function
- web server gets not the file path, only file name - needs path to store repaired files
- dictionary {file(n).aac: b'\x65\x66\x67\x00\x10\x00\x00\x00\x04\x00'}
::
files = request.files.getlist('fileUploadAcpRepair')
f_dict = {f: open(f, "rb").read() for f in files if f[-5:] == ".aacp" or f[-4:] == ".aac"}
aacRepair = AacRepair("/home/Kitty/aac_files", f_dict)
aacRepair.repair()
File System
- List of files in folder is written to dictionary {file_name_key: file_byte_content_value}
::
aacRepair = AacRepair("/home/Kitty/aac_files")
aacRepair.repair()
pip install
""" Linux """
$ pip3 install aacrepair
""" Windows """
> pip install aacrepair
Uninstall
Python user:
- find the module location
- uninstall and then remove remnants
$ pip3 show aacrepair
$ pip3 uninstall aacrepair
Location: ... /python310/site-packages
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file aacRepair-0.5.tar.gz
.
File metadata
- Download URL: aacRepair-0.5.tar.gz
- Upload date:
- Size: 45.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c405cda391bb76046dc04ddd459247af2711dba088468a361ca8a58510d384af |
|
MD5 | be1dd57c8e72728a0a01f143025f7add |
|
BLAKE2b-256 | e350cd93ced4ac6be47d494a0d03fd38919713e06af26b53b6b2b39d5973f128 |
File details
Details for the file aacRepair-0.5-py3-none-any.whl
.
File metadata
- Download URL: aacRepair-0.5-py3-none-any.whl
- Upload date:
- Size: 18.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 88a05c7c3cbdcf61f8828049301004008ce71ddd66a90bd94a1d8caf6a10c6c9 |
|
MD5 | 993189fbd1531af684797f04bfe2c179 |
|
BLAKE2b-256 | 4961047384c1eeaf697efceac1a4554ac8fa9ffabd2261fe5f283ba731f438db |