{ "info": { "author": "Zach Howard", "author_email": "zach.d.howard@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 3 - Alpha", "License :: OSI Approved :: MIT License", "Topic :: Utilities" ], "description": "# aud - Quick tools for an audio studio environment\n\naud is an audio package meant to help streamline batch audio edits.\nIt allows you to easily work with complex file structures and naming conventions.\nIt is also meant to be easy enough for a beginner programmer to dive in and use.\nThe foundation of this package relies on two core pieces; FFMPEG and PyDub.\n\nAudDir allows you perform batch audio actions on messy folders. \nWhen working with audio you may often end up with many arbitrary files your DAW may produce so AudDir allows you to point only to specific extensions in a directory and to work with them on the fly.\n\n```\nRequirements:\n>> python3\n>> ffmpeg\n>> ffmpeg-normalize\n```\n\nMake sure all of the requirements are installed to your $PATH before use\n\n#### Import The Package:\n```python\n>> import aud\n```\n\n#### AudFile\n```python\n>> filepath = aud.AudFile(\"test.wav\")\n```\n\n#### AudDir\n```python\n>> dirpath = aud.AudDir(\"test\")\n```\n\n#### Set which file types in the directory to effect\n```python\n>> dirpath.extensions = [\".wav\", \".mp3\"]\n```\n\n#### For commands that change more than the name of an audio file, set the output folder\n```python\n>> dirpath.setOutputDir(\"_Processed\")\n```\n\n#### Generate a log file for a particular directory\n```python\n>> dirpath.log(\"_Processed\")\n```\n\n#### Add metadata tags to a file. There are standards but you can make up your own\n```python\n>> dirpath.metadata([\"Artist\": \"Nobukazu Takemura\", \"Type\": \"sfx\", \"Keywords\": \"sword oneshot stereo\"])\n>> filepath.metadata([\"Artist\": \"Rei Harakami\", \"Project\": \"Game Jam\", \"Keywords\": \"loop bgm\"])\n```\n\n#### Rename a file to be all lowercase\n```python\n>> dirpath.renameLower()\n>> filepath.renameLower()\n```\n\n#### Rename a file to be all UPPERCASE\n```python\n>> dirpath.renameUpper()\n>> filepath.renameUpper()\n```\n\n#### Rename a file to prepend a string\n```python\n>> dirpath.renamePrepend(\"bgm_loop_\")\n>> filepath.renamePrepend(\"sword_sfx_\")\n```\n\n#### Rename files to prepend iterated numbers with variable zerofill\n```python\n>> dirpath.renameIterate(3)\n```\n\n#### Rename a file to replace_spaces_with_underscores\n```python\n>> dirpath.renameReplaceSpaces()\n>> filepath.renameReplaceSpaces()\n```\n\n#### Move audio files\n```python\n>> dirpath.move(\"C://Share/Audio\")\n>> filepath.move(\"/mnt/share\")\n```\n\n#### Add leading and/or trailing space for an audio file\n```python\n>> dirpath.pad(_in = 2.0, _out = 3.5)\n>> filepath.pad(_out = 2.2)\n```\n\n\n#### Add fade in or out for an audio file in seconds\n```python\n>> dirpath.fade(_in = 5.0, _out = 10.5)\n>> filepath.fade(_out = 2.2)\n```\n\n#### Normalize audio\n```python\n>> dirpath.normalize()\n>> dirpath.normalize(_type=\"peak\")\n>> filepath.normalize(_type=\"peak\", _target=-6)\n```\n\n#### Convert a file to a particular format\n```python\n>> dirpath.convertTo(_extension=\".wav\", _target_samplerate=44100, _target_bitdepth=16)\n>> filepath.convertTo(_extension=\".mp3\", _target_samplerate=44100, _target_bitrate=\"320k\") #bitrate=\"0\" for lossy compression\n```\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/zdhoward/aud", "keywords": "audio files tools easy", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "aud", "package_url": "https://pypi.org/project/aud/", "platform": "", "project_url": "https://pypi.org/project/aud/", "project_urls": { "Homepage": "http://github.com/zdhoward/aud" }, "release_url": "https://pypi.org/project/aud/0.1.16/", "requires_dist": [ "pydub", "arrow", "colorlog", "setuptools (>24.2.0)", "pip (>9.0.0)" ], "requires_python": "", "summary": "Quick tools for audio busy-work", "version": "0.1.16" }, "last_serial": 5384026, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "780aa6e65b82ecc18785119bafd8f7fb", "sha256": "01535c7f5eb5e3d1481b5d02d7616eefbd1414181dfabcff90feb37b2cf4c903" }, "downloads": -1, "filename": "aud-0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "780aa6e65b82ecc18785119bafd8f7fb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8289, "upload_time": "2019-04-10T03:33:09", "url": "https://files.pythonhosted.org/packages/d4/b2/780f6019ca89c894086b8852dc7ad2c6ac80c9bed80983391b00234d10cd/aud-0.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "bb36ea6d4463e1c034cc53b03b527345", "sha256": "308161e3171be253bd737e551979e30436d6843a0cd9db6e16d4932e74bf0117" }, "downloads": -1, "filename": "aud-0.1.tar.gz", "has_sig": false, "md5_digest": "bb36ea6d4463e1c034cc53b03b527345", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5660, "upload_time": "2019-04-10T03:33:14", "url": "https://files.pythonhosted.org/packages/ff/7e/340fac92ab3269429537d27ebf5804d24500d9247bc2df8bebab7aaa3e2c/aud-0.1.tar.gz" } ], "0.1.12": [ { "comment_text": "", "digests": { "md5": "62dee48d15967f010711d4caf62fd49f", "sha256": "0a4b57ae06c7eceef83dcbcada4e6b1d8ae9a0cb0419e6458c06687828eb9927" }, "downloads": -1, "filename": "aud-0.1.12.tar.gz", "has_sig": false, "md5_digest": "62dee48d15967f010711d4caf62fd49f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5803, "upload_time": "2019-04-13T18:16:35", "url": "https://files.pythonhosted.org/packages/83/3b/f0a7e3608b78566fc0e4d6e818c75945e51b7e1764155f5466c2e0449e96/aud-0.1.12.tar.gz" } ], "0.1.13": [ { "comment_text": "", "digests": { "md5": "a222c6f15c453752a5d1beda3216d311", "sha256": "36c0c930cfca00c7ade23b463af4566f2cf1beaf7520831c916c026b0415dda9" }, "downloads": -1, "filename": "aud-0.1.13-py3-none-any.whl", "has_sig": false, "md5_digest": "a222c6f15c453752a5d1beda3216d311", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8400, "upload_time": "2019-04-13T18:18:14", "url": "https://files.pythonhosted.org/packages/c4/30/bc4ba4f4338d063631b34e7e3de71e32b21009667cfbd966d117f6492013/aud-0.1.13-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc2fb7bf09a28b20f0aa8464699967a2", "sha256": "d405942c33d5ae340a582ca394a066c6c207de9534d3eaebddfc5bced5da6ac7" }, "downloads": -1, "filename": "aud-0.1.13.tar.gz", "has_sig": false, "md5_digest": "dc2fb7bf09a28b20f0aa8464699967a2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5802, "upload_time": "2019-04-13T18:17:17", "url": "https://files.pythonhosted.org/packages/1b/7d/218264b7552fa001c114135cc31713699c1e0ec5c69146e50033918ac2f5/aud-0.1.13.tar.gz" } ], "0.1.14": [ { "comment_text": "", "digests": { "md5": "ca6301a4ce7d72e61dabb0fd8e1d6495", "sha256": "99beb552e4c86c543c7999c5e077464e882bef24322a5f19b6afe6975a4e4e2a" }, "downloads": -1, "filename": "aud-0.1.14-py3-none-any.whl", "has_sig": false, "md5_digest": "ca6301a4ce7d72e61dabb0fd8e1d6495", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8399, "upload_time": "2019-04-13T18:18:38", "url": "https://files.pythonhosted.org/packages/b3/1b/eb65a243d4c6446e38602c83ca3ff7a21c27b8194e81d4746dca7379aeec/aud-0.1.14-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3dc0c3f2d3ecbeb96dcaef9c8905af90", "sha256": "ef7088d01f27aaa5e826bd43bf45b64f74abb6aa41baf546f635f1df44846e49" }, "downloads": -1, "filename": "aud-0.1.14.tar.gz", "has_sig": false, "md5_digest": "3dc0c3f2d3ecbeb96dcaef9c8905af90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5805, "upload_time": "2019-04-13T18:18:40", "url": "https://files.pythonhosted.org/packages/4a/23/22a3b246f1a375a046e46c4d766ad8d879a4c5afb38ed3c954f465f1bb69/aud-0.1.14.tar.gz" } ], "0.1.15": [ { "comment_text": "", "digests": { "md5": "c0dcc19bfe44a05686396959bef2270b", "sha256": "1649a0c26ec7f6d90c0396981fbaa8cfeb14fbd0ac4b9d638f3cd645f4c224ea" }, "downloads": -1, "filename": "aud-0.1.15-py3-none-any.whl", "has_sig": false, "md5_digest": "c0dcc19bfe44a05686396959bef2270b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8476, "upload_time": "2019-04-13T18:44:59", "url": "https://files.pythonhosted.org/packages/6d/9d/d7f6061a6e5d9f08ff75fcd2468c925408aaf92d388331f7d50890865017/aud-0.1.15-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "863437c6dc9e80d4dbbc092375728f61", "sha256": "9ad4e85c6a48ea867ceaceed89ecef94d38da0eb72552f1e8be00a81e750b2fd" }, "downloads": -1, "filename": "aud-0.1.15.tar.gz", "has_sig": false, "md5_digest": "863437c6dc9e80d4dbbc092375728f61", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5879, "upload_time": "2019-04-13T18:45:01", "url": "https://files.pythonhosted.org/packages/34/0d/a1a083755c10292761e4e0151eb567e1fbf022fc067d40c1cafbeaed0333/aud-0.1.15.tar.gz" } ], "0.1.16": [ { "comment_text": "", "digests": { "md5": "78461036344e6a3fa6320137bb2ab166", "sha256": "9a7d40d7371f229f52552816b99fc99f0020629ec35779571c026de0bb0a64d1" }, "downloads": -1, "filename": "aud-0.1.16-py3-none-any.whl", "has_sig": false, "md5_digest": "78461036344e6a3fa6320137bb2ab166", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9760, "upload_time": "2019-06-11T00:55:24", "url": "https://files.pythonhosted.org/packages/17/6e/4c26dccd0de0d2c80460d64dc3638cdea3cb84b60072d31ccd434c19bc26/aud-0.1.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66ccebb76132d1cbb9ac64b12132fce7", "sha256": "29d7510e0344ac04b760e18d94a4b7ea52841398d13de99ed807ca7706c76df0" }, "downloads": -1, "filename": "aud-0.1.16.tar.gz", "has_sig": false, "md5_digest": "66ccebb76132d1cbb9ac64b12132fce7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8244, "upload_time": "2019-06-11T00:55:25", "url": "https://files.pythonhosted.org/packages/55/a9/9362b77326867221cde2dabdb73f3f98d2a19e397eeb913cc4988abdf60c/aud-0.1.16.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "5817cb5941d76b3f9dfa34eb33e4eb17", "sha256": "42925cbb8234502365d67c44cef81a9d8fc6ee16d2cb44a9b23bdbe6be2c852c" }, "downloads": -1, "filename": "aud-0.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5817cb5941d76b3f9dfa34eb33e4eb17", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 8340, "upload_time": "2019-04-10T05:30:40", "url": "https://files.pythonhosted.org/packages/58/39/e72b6eef346121e70c509cc7a28bb4df09d6dc089402be08195438d798c4/aud-0.1.2-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8a47aff3f7f63ec204b6a58c6eda5b9f", "sha256": "c6fa0162d855f620c547afb550aff1433232bc20584a32efe50b834cbbe6e158" }, "downloads": -1, "filename": "aud-0.1.2.tar.gz", "has_sig": false, "md5_digest": "8a47aff3f7f63ec204b6a58c6eda5b9f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5762, "upload_time": "2019-04-10T05:30:42", "url": "https://files.pythonhosted.org/packages/d8/85/5bc161fd96cdef4efb18f3f1d2ac486afb98ce56d627dfc125a976e2a2e8/aud-0.1.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "78461036344e6a3fa6320137bb2ab166", "sha256": "9a7d40d7371f229f52552816b99fc99f0020629ec35779571c026de0bb0a64d1" }, "downloads": -1, "filename": "aud-0.1.16-py3-none-any.whl", "has_sig": false, "md5_digest": "78461036344e6a3fa6320137bb2ab166", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 9760, "upload_time": "2019-06-11T00:55:24", "url": "https://files.pythonhosted.org/packages/17/6e/4c26dccd0de0d2c80460d64dc3638cdea3cb84b60072d31ccd434c19bc26/aud-0.1.16-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "66ccebb76132d1cbb9ac64b12132fce7", "sha256": "29d7510e0344ac04b760e18d94a4b7ea52841398d13de99ed807ca7706c76df0" }, "downloads": -1, "filename": "aud-0.1.16.tar.gz", "has_sig": false, "md5_digest": "66ccebb76132d1cbb9ac64b12132fce7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8244, "upload_time": "2019-06-11T00:55:25", "url": "https://files.pythonhosted.org/packages/55/a9/9362b77326867221cde2dabdb73f3f98d2a19e397eeb913cc4988abdf60c/aud-0.1.16.tar.gz" } ] }