Metadata-Version: 2.1
Name: audiodotturn
Version: 0.3.3
Summary: A tool for formatting and organizing music files, mainly for files with no metadata.
Author-email: tairenfd <tairenfd@mailbox.org>
License: MIT License
        
        Copyright (c) 2023 tairenfd@mailbox.org
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights to
        use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
        of the Software, and to permit persons to whom the Software is furnished to do
        so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
        THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: homepage, https://audiodotturn.tairenfd.xyz
Project-URL: repository, https://github.com/tairenfd/audiodotturn
Keywords: audio,music,organizer,metadata,formatter,tagger,manager,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Environment :: Console
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Description-Content-Type: text/x-rst
Provides-Extra: docs
License-File: LICENSE

AudioDotTurn 0.3.3
===================

.. image:: https://img.shields.io/pypi/v/audiodotturn.svg
    :target: https://pypi.org/project/audiodotturn/

If you're tired of your audio files being a complete mess with poorly
formatted names and missing metadata this might be your solution.

Using audiodotturn you can quickly and easily organize your entire audio
library with just a few commands.

The project initially began due to a dumb mistake by myself where I
downloaded over 3000+ songs with yt-dlp with no proper formatting or
metadata included.

Table of Contents
=================

-  `Installation <#installation>`__
-  `Dependencies <#dependencies>`__
-  `Usage <#usage>`__

   -  `Flags and positional
      arguments <#flags-and-positional-arguments>`__
   -  `Choosing a formatter <#choosing-a-formatter>`__
   -  `Creating a dataset <#creating-a-dataset>`__
   -  `Viewing information <#viewing-information>`__

-  `Examples <#examples>`__

   -  `File formatting examples <#file-formatting-examples>`__
   -  `Example dataset <#example-dataset>`__

-  `Disclaimer <#disclaimer>`__
-  `Roadmap <#roadmap>`__
-  `License <#license>`__

Installation
============

.. code:: sh

	 pip install audiodotturn

Or install from source with

.. code:: sh

	 git clone https://github.com/tairenfd/audiodotturn.git
	 cd audiodotturn
	 pip install .

Set User Config
===============

Depending on how your system and python PATHs are set the installation path may differ.
Usually however, you should be able to find the default config.json in one of the below

 .. code:: sh

    /home/user/.local/lib/python{3}.{11}/site-packages/audiodotturn/config/config.json
    /usr/local/lib/python{x}.{x}/site-packages/audiodotturn/config/config.json
    /usr/lib/python{x}.{x}/site-packages/audiodotturn/config/config.json

Once the default config is found, copy it to one of the below paths with `cp <DEFAULT_CONFIG> <NEW_PATH>`

.. code:: sh

    ~/.config/audiodotturn/
    ~/config/audiodotturn/
    ~/audiodotturn/
    ~/
    /usr/local/etc/audiodotturn/
    /etc/audiodotturn/

Once copied rename the config file to adt_config.json and change any desired settings, if the config warning is no longer showing up,
then your new config has loaded properly.

Dependencies
============

External libraries: 

	- `rich <https://github.com/Textualize/rich>`__

Standard: 

	- os 
	- re 
	- json 
	- argparse 
	- shutil

Usage
=====

AudioDotTurn has two main commands for interacting with the music library: ``create`` and ``view``.

The ``create`` command allows you to format and/or organize your files,
while the ``view`` command allows you to view information about your
existing data.

There is however a third positional argument, ``set``.

The ``set`` command can also be used to set default values. It will have
you confirm or deny any changes to ensure safety. Multiple values can be
changed at once.

Flags and positional arguments
------------------------------

.. code:: sh

       usage: AudioDotTurn.py [-h] {create,view} ...

       Format, orgranize and retrieve data from files in an audio library.

       positional arguments:
         {set,create,view}  commands
           set          Set default settings
           create       Create subcommands
           view         View subcommands

       optional arguments:
         --defaults                                     Show default settings
         --defaults [{program, format, options, all}]   Show default settings
         -h, --help                                     Show this help message and exit

       Set subcommands:
         --artist        ARTIST 
         --title         TITLE
         --features      FEATURES 
         --misc          MISC 
         --youtube_id    YOUTUBE_ID 
         --filetype      FILETYPE 
         --dry           BOOL
         --filename      FILENAME
         --directory     PATH
         --formatter     FORMATTER
         --error_msg     STRING       Seperate options with '|'   
         --exts          STRING       Seperate options with ','

       Create subcommands:
         -d, --dirs                    Organize files in artist directories
         -x. --formatter  FORMATTER    Define the formatter to use
         -f, --formatfile FORMATFILE   Format single file
         -F, --formatdir               Format all files in directory
         -D, --dump                    Dump directory into JSON file
         --filename FILENAME           Name of JSON file
         --directory DIR               Directory to organize or format files
         --dry                         Dry run

       View subcommands:
         -d DATA             JSON data to view

         View Artists:
           artists             View list of artists
             -t, --tracks      View list of artists and their tracks
             -n, --names       View list of artist names

         View Songs:
           songs               View list of songs
             -a ARTIST         View list of songs by artist
             -i ID             View list of songs by ID
             -N NAME           View list of songs by name

Choosing a formatter
--------------------

The default formatter is now the ``standard`` formatter which applies no
youtube_id data attribute but otherwise works the same. It will still
read formatted files with a youtube_id fine when creating a json, but
will not create new datasets with youtube_id's - instead putting that
info if provided into the ``misc`` category. This is the recommended
formatter for general use.

The ``youtube`` formatter is primarily for files downloaded with yt-dlp
that still contain a suffix of [youtube_id].ext

You can set a default formatter in the config.json file, or set it
during runtime with ``-x [formatter]``

To view the currently set default formatter use
``audiodotturn --default settings`` 

- default formatter listed under ``program defaults -> formatter``

You can view the available formatters with
``audiodotturn --defaults options`` 

- options will be under ``program options -> formatter``

Creating a dataset
------------------

To create a dataset, you first need to format your filenames. There are
three options for formatting filenames:

1. **Format a single file:**

.. code:: sh

         audiodotturn create -f [filename]

This will format the filename using the default format.

If your file doesn't follow this format, the tool will attempt to format
it as best it can. You can also specify a custom format using the
``--format`` option.

2. **Format all files in a directory:**

.. code:: sh

         audiodotturn create -F [directory]

This will format all files in the specified directory using the default
format.

3. **Organize files into artist directories:**

.. code:: sh

         audiodotturn create -d [directory]

This will organize all files in the specified directory into artist
directories based on the artist names in the filenames.

After formatting your filenames, you can create a dataset using the
``--dump`` option:

.. code:: sh

         audiodotturn create -D --filename [filename] --directory [directory]

This will create a JSON file with information about your formatted
files. If directory is not set then config directory path will be used,
default is set to current working directory.

Viewing information
-------------------

To view information about your dataset, you can use the ``view``
command. There are two options for viewing information:

1. **View a list of artists:**

.. code:: sh

         audiodotturn view -d [datafile] artists -n

This will display a list of all artists in the dataset.

.. code:: sh

         audiodotturn view -d [datafile] artists -t

This will display a list of all artists in the dataset along with their
tracks.

2. **View a list of songs:**

.. code:: sh

         audiodotturn view -d [datafile] songs -a [artist name]

This will display a list of all songs by the specified artist.

.. code:: sh

         audiodotturn view -d [datafile] songs -i [youtube ID]

This will display a list of all songs with the specified youtube ID.

.. code:: sh

         audiodotturn view -d [datafile] songs -N [track name]

This will display a list of all songs with the specified track name.

Examples
========

File formatting examples
------------------------

-  Note: The below are only examples using the ‘youtube’ formatter. More
   examples will be added soon.

-  ``[YG Feat. Dj Mustard "Pop It, Shake It" (Uncut) (WSHH Exclusive - Official Music Video) [kQ2KSPz4iSw].wav]``
   formats as
   ``[YG][Pop It, Shake It][Dj Mustard][Uncut, WSHH Exclusive - Official Music Video][kQ2KSPz4iSw].wav``

-  ``[The Weeknd - Blinding Lights (Lyrics) [4NRXx6U8ABQ].mp3]`` formats
   as
   ``[The Weeknd][Blinding Lights][UNKNOWN][Lyrics][4NRXx6U8ABQ].mp3``

-  ``[Lady Gaga, Ariana Grande - Rain On Me (Official Music Video) [AOm9Fv8NTG0].mp3]``
   formats as
   ``[Lady Gaga, Ariana Grande][Rain On Me][UNKNOWN][Official Music Video][AOm9Fv8NTG0].mp3``

-  ``[Music for Sleeping and Deep Relaxation: Delta Waves [HU3ZGMaVZj0].mp4]``
   formats as
   ``[Music for Sleeping and Deep Relaxation][Delta Waves][UNKNOWN][UNKNOWN][HU3ZGMaVZj0].mp4``

-  ``[Music [HU3ZGMaVZj0].mp4]`` formats as
   ``[Music][UNKNOWN][UNKNOWN][UNKNOWN][HU3ZGMaVZj0].mp4``

-  ``Zacari (adasdasdasd) ft. Isaiah Rashad [misc misc] - Bliss (Official Audio) [audio] [9o1gLWxHI7Q].mp3``
   formats as
   ``[Zacari][Bliss][Isaiah Rashad][adasdasdasd, Official Audio, misc misc, audio][9o1gLWxHI7Q].mp3``

U+ff02 is recognized if the filename contains it

-  ``ZillaKami x SosMula ＂33rd Blakk Glass＂(WSHH Exclusive - testing) [9o1gLWxHI7Q].mp3``
   formats as
   ``[ZillaKami x SosMula][33rd Blakk Glass][UNKNOWN][WSHH Exclusive - testing][9o1gLWxHI7Q].mp3``

Example dataset
---------------

.. code:: json

     {
       "Koly P": {
         "tracks": [
           {
             "title": "Rapture Of Thugs",
             "features": "Polo pooh",
             "misc": "KOLYON",
             "youtube_id": "xZEK6luuZ2k",
             "filetype": "mp3"
           }
         ]
       },
       "Isaiah Rashad": {
         "tracks": [
           {
             "title": "All Herb",
             "features": "Amindi",
             "misc": "UNKNOWN",
             "filetype": "mp3"
           },
           {
             "title": "The Race Freestyle",
             "features": "UNKNOWN",
             "misc": "Tay-K",
             "youtube_id": "Rf4S_44jkAY",
             "filetype": "mp3"
           }
         ]
       }
     }

Disclaimer
==========

AudioDotTurn is currently in alpha testing and is provided as is with no
warranties or guarantees of any kind. The author of the program is not
responsible for any damages or issues caused by the use of this program.
Use at your own risk.

Roadmap
=======

-  Allow to confirm/deny filename changes, currently adding ``--dry`` before any ``set`` or ``create`` functions is recommended.
-  General regex adjusting for broader use
-  Refactoring code for better readability and maintainability
-  Bug fixes and optimization

License
=======

.. figure:: https://img.shields.io/badge/License-MIT-yellow.svg
   :alt: MIT

This project is licensed under the MIT License. See the LICENSE file for
more information.
