TonieToolbox 0.2.2__tar.gz → 0.3.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (31) hide show
  1. {tonietoolbox-0.2.2/TonieToolbox.egg-info → tonietoolbox-0.3.0}/PKG-INFO +158 -5
  2. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/README.md +158 -5
  3. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/__init__.py +1 -1
  4. tonietoolbox-0.3.0/TonieToolbox/__main__.py +618 -0
  5. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/dependency_manager.py +95 -5
  6. tonietoolbox-0.3.0/TonieToolbox/media_tags.py +637 -0
  7. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/recursive_processor.py +96 -11
  8. tonietoolbox-0.3.0/TonieToolbox/teddycloud.py +580 -0
  9. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0/TonieToolbox.egg-info}/PKG-INFO +158 -5
  10. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox.egg-info/SOURCES.txt +2 -0
  11. tonietoolbox-0.2.2/TonieToolbox/__main__.py +0 -218
  12. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/LICENSE.md +0 -0
  13. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/MANIFEST.in +0 -0
  14. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/audio_conversion.py +0 -0
  15. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/constants.py +0 -0
  16. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/filename_generator.py +0 -0
  17. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/logger.py +0 -0
  18. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/ogg_page.py +0 -0
  19. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/opus_packet.py +0 -0
  20. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/tonie_analysis.py +0 -0
  21. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/tonie_file.py +0 -0
  22. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/tonie_header.proto +0 -0
  23. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/tonie_header_pb2.py +0 -0
  24. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox/version_handler.py +0 -0
  25. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox.egg-info/dependency_links.txt +0 -0
  26. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox.egg-info/entry_points.txt +0 -0
  27. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox.egg-info/requires.txt +0 -0
  28. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/TonieToolbox.egg-info/top_level.txt +0 -0
  29. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/pyproject.toml +0 -0
  30. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/setup.cfg +0 -0
  31. {tonietoolbox-0.2.2 → tonietoolbox-0.3.0}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: TonieToolbox
3
- Version: 0.2.2
3
+ Version: 0.3.0
4
4
  Summary: Convert audio files to Tonie box compatible format
5
5
  Home-page: https://github.com/Quentendo64/TonieToolbox
6
6
  Author: Quentendo64
@@ -46,12 +46,15 @@ A Python tool for converting audio files to Tonie box compatible format (TAF - T
46
46
  - [Basic Usage](#basic-usage)
47
47
  - [Advanced Options](#advanced-options)
48
48
  - [Common Usage Examples](#common-usage-examples)
49
+ - [Media Tags](#media-tags)
50
+ - [TeddyCloud Upload](#teddycloud-upload)
49
51
  - [Technical Details](#technical-details)
50
52
  - [TAF File Structure](#taf-tonie-audio-format-file-structure)
51
53
  - [File Analysis](#file-analysis)
52
54
  - [File Comparison](#file-comparison)
53
55
  - [Related Projects](#related-projects)
54
56
  - [Contributing](#contributing)
57
+ - [Legal Notice](#legal-notice)
55
58
 
56
59
  ## Overview
57
60
 
@@ -67,15 +70,19 @@ The tool provides several capabilities:
67
70
  - Split Tonie files into individual opus tracks
68
71
  - Compare two TAF files for debugging differences
69
72
  - Support various input formats through FFmpeg conversion
73
+ - Extract and use audio media tags (ID3, Vorbis Comments, etc.) for better file naming
74
+ - Upload Tonie files directly to a TeddyCloud server
75
+ - Automatically upload cover artwork alongside Tonie files
70
76
 
71
77
  ## Requirements
72
78
 
73
79
  - Python 3.6 or higher
74
- - FFmpeg (for converting non-opus audio files).
80
+ - FFmpeg (for converting non-opus audio files)
75
81
  - opus-tools (specifically `opusenc` for encoding to opus format)
82
+ - mutagen (for reading audio file metadata, auto-installed when needed)
76
83
 
77
84
  Make sure FFmpeg and opus-tools are installed on your system and accessible in your PATH.
78
- If the requirements are not found in PATH. TonieToolbox will download the missing requirements.
85
+ If the requirements are not found in PATH. TonieToolbox will download the missing requirements with --auto-download.
79
86
 
80
87
  ## Installation
81
88
 
@@ -164,9 +171,14 @@ tonietoolbox -h
164
171
 
165
172
  Output:
166
173
  ```
167
- usage: TonieToolbox.py [-h] [-v] [-t TIMESTAMP] [-f FFMPEG] [-o OPUSENC]
174
+ usage: TonieToolbox.py [-h] [-v] [--upload URL] [--include-artwork] [--get-tags URL]
175
+ [--ignore-ssl-verify] [--special-folder FOLDER] [--path PATH]
176
+ [--show-progress] [--connection-timeout SECONDS]
177
+ [--read-timeout SECONDS] [--max-retries RETRIES]
178
+ [--retry-delay SECONDS] [-t TIMESTAMP] [-f FFMPEG] [-o OPUSENC]
168
179
  [-b BITRATE] [-c] [-a TAG] [-n] [-i] [-s] [-r] [-O]
169
- [-A] [-k] [-C FILE2] [-D] [-d] [-T] [-q] [-Q]
180
+ [-A] [-k] [-C FILE2] [-D] [-m] [--name-template TEMPLATE]
181
+ [--show-tags] [-d] [-T] [-q] [-Q]
170
182
  SOURCE [TARGET]
171
183
 
172
184
  Create Tonie compatible file from Ogg opus file(s).
@@ -175,6 +187,24 @@ positional arguments:
175
187
  SOURCE input file or directory or a file list (.lst)
176
188
  TARGET the output file name (default: ---ID---)
177
189
 
190
+ TeddyCloud Options:
191
+ --upload URL Upload to TeddyCloud instance (e.g., https://teddycloud.example.com). Supports .taf, .jpg, .jpeg, .png files.
192
+ --include-artwork Upload cover artwork image alongside the Tonie file when using --upload
193
+ --get-tags URL Get available tags from TeddyCloud instance
194
+ --ignore-ssl-verify Ignore SSL certificate verification (for self-signed certificates)
195
+ --special-folder FOLDER
196
+ Special folder to upload to (currently only "library" is supported)
197
+ --path PATH Path where to write the file on TeddyCloud server
198
+ --show-progress Show progress bar during file upload (default: enabled)
199
+ --connection-timeout SECONDS
200
+ Connection timeout in seconds (default: 10)
201
+ --read-timeout SECONDS
202
+ Read timeout in seconds (default: 300)
203
+ --max-retries RETRIES
204
+ Maximum number of retry attempts (default: 3)
205
+ --retry-delay SECONDS
206
+ Delay between retry attempts in seconds (default: 5)
207
+
178
208
  optional arguments:
179
209
  -h, --help show this help message and exit
180
210
  -v, --version show program version and exit
@@ -198,6 +228,12 @@ optional arguments:
198
228
  -D, --detailed-compare
199
229
  Show detailed OGG page differences when comparing files
200
230
 
231
+ Media Tag Options:
232
+ -m, --use-media-tags Use media tags from audio files for naming
233
+ --name-template TEMPLATE
234
+ Template for naming files using media tags. Example: "{album} - {artist}"
235
+ --show-tags Show available media tags from input files
236
+
201
237
  Version Check Options:
202
238
  -S, --skip-update-check
203
239
  Skip checking for updates
@@ -269,6 +305,111 @@ Process a music collection with nested album folders and save TAF files alongsid
269
305
  tonietoolbox --recursive --output-to-source "\Hörspiele\"
270
306
  ```
271
307
 
308
+ ### Media Tags
309
+
310
+ TonieToolbox can read metadata tags from audio files (such as ID3 tags in MP3 files, Vorbis comments in FLAC/OGG files, etc.) and use them to create more meaningful filenames or display information about your audio collection.
311
+
312
+ #### View available tags in audio files:
313
+
314
+ To see what tags are available in your audio files:
315
+
316
+ ```
317
+ tonietoolbox --show-tags input.mp3
318
+ ```
319
+
320
+ This will display all readable tags from the file, which can be useful for creating naming templates.
321
+
322
+ #### Use media tags for file naming:
323
+
324
+ To use the metadata from audio files when generating output filenames:
325
+
326
+ ```
327
+ tonietoolbox input.mp3 --use-media-tags
328
+ ```
329
+
330
+ For single files, this will use a default template of "{title} - {artist}" for the output filename.
331
+
332
+ #### Custom naming templates:
333
+
334
+ You can specify custom templates for generating filenames based on the audio metadata:
335
+
336
+ ```
337
+ tonietoolbox input.mp3 --use-media-tags --name-template "{artist} - {album} - {title}"
338
+ ```
339
+
340
+ #### Recursive processing with media tags:
341
+
342
+ When processing folders recursively, media tags can provide more consistent naming:
343
+
344
+ ```
345
+ tonietoolbox --recursive --use-media-tags "Music/Collection/"
346
+ ```
347
+
348
+ This will attempt to use the album information from the audio files for naming the output files:
349
+
350
+ ```
351
+ tonietoolbox --recursive --use-media-tags --name-template "{date} - {album} ({artist})" "Music/Collection/"
352
+ ```
353
+
354
+ ### TeddyCloud Upload
355
+
356
+ TonieToolbox can upload files directly to a TeddyCloud server, which is an alternative to the official Tonie cloud for managing custom Tonies.
357
+
358
+ #### Upload a Tonie file to TeddyCloud:
359
+
360
+ ```
361
+ tonietoolbox --upload https://teddycloud.example.com my_tonie.taf
362
+ ```
363
+
364
+ This will upload the specified Tonie file to the TeddyCloud server.
365
+
366
+ #### Upload a newly created Tonie file:
367
+
368
+ You can combine conversion and upload in a single command:
369
+
370
+ ```
371
+ tonietoolbox input.mp3 --upload https://teddycloud.example.com
372
+ ```
373
+
374
+ This will convert the input file to TAF format and then upload it to the TeddyCloud server.
375
+
376
+ #### Upload with custom path:
377
+
378
+ ```
379
+ tonietoolbox my_tonie.taf --upload https://teddycloud.example.com --path "/custom_audio"
380
+ The path needs to be existing in the TeddyCloud Library.
381
+ ```
382
+
383
+ #### Upload with artwork:
384
+
385
+ TonieToolbox can automatically find and upload cover artwork alongside your Tonie files:
386
+
387
+ ```
388
+ tonietoolbox my_tonie.taf --upload https://teddycloud.example.com --include-artwork
389
+ ```
390
+
391
+ This will:
392
+ 1. Look for cover images (like "cover.jpg", "artwork.png", etc.) in the source directory
393
+ 2. If no cover image is found, attempt to extract embedded artwork from the audio files
394
+ 3. Upload the artwork to the "/custom_img" directory on the TeddyCloud server
395
+ 4. The artwork will be uploaded with the same filename as the Tonie file for easier association
396
+
397
+ #### Recursive processing with uploads:
398
+
399
+ ```
400
+ tonietoolbox --recursive "Music/Albums" --upload https://teddycloud.example.com --include-artwork
401
+ ```
402
+
403
+ This will process all folders recursively, create TAF files, and upload both the TAF files and their cover artwork to the TeddyCloud server.
404
+
405
+ #### Upload with SSL certificate verification disabled:
406
+
407
+ ```
408
+ tonietoolbox my_tonie.taf --upload https://teddycloud.example.com --ignore-ssl-verify
409
+ ```
410
+
411
+ Use this option if the TeddyCloud server uses a self-signed certificate.
412
+
272
413
  ## Technical Details
273
414
 
274
415
  ### TAF (Tonie Audio Format) File Structure
@@ -348,3 +489,15 @@ This project is inspired by and builds upon the work of other Tonie-related open
348
489
  ## Contributing
349
490
 
350
491
  Contributions are welcome! Please feel free to submit a Pull Request.
492
+
493
+ ## Legal Notice
494
+
495
+ This project is an independent, community-driven effort created for educational and personal use purposes.
496
+
497
+ - tonies®, toniebox®, Hörfigur® are registered trademarks of [tonies GmbH](https://tonies.com).
498
+ - This project is not affiliated with, endorsed by, or connected to tonies GmbH in any way.
499
+ - TonieToolbox is provided "as is" without warranty of any kind, either express or implied.
500
+ - Users are responsible for ensuring their usage complies with all applicable copyright and intellectual property laws.
501
+ - This tool is intended for personal use with legally owned content only.
502
+
503
+ By using TonieToolbox, you acknowledge that the authors of this software take no responsibility for any potential misuse or any damages that might result from the use of this software.
@@ -19,12 +19,15 @@ A Python tool for converting audio files to Tonie box compatible format (TAF - T
19
19
  - [Basic Usage](#basic-usage)
20
20
  - [Advanced Options](#advanced-options)
21
21
  - [Common Usage Examples](#common-usage-examples)
22
+ - [Media Tags](#media-tags)
23
+ - [TeddyCloud Upload](#teddycloud-upload)
22
24
  - [Technical Details](#technical-details)
23
25
  - [TAF File Structure](#taf-tonie-audio-format-file-structure)
24
26
  - [File Analysis](#file-analysis)
25
27
  - [File Comparison](#file-comparison)
26
28
  - [Related Projects](#related-projects)
27
29
  - [Contributing](#contributing)
30
+ - [Legal Notice](#legal-notice)
28
31
 
29
32
  ## Overview
30
33
 
@@ -40,15 +43,19 @@ The tool provides several capabilities:
40
43
  - Split Tonie files into individual opus tracks
41
44
  - Compare two TAF files for debugging differences
42
45
  - Support various input formats through FFmpeg conversion
46
+ - Extract and use audio media tags (ID3, Vorbis Comments, etc.) for better file naming
47
+ - Upload Tonie files directly to a TeddyCloud server
48
+ - Automatically upload cover artwork alongside Tonie files
43
49
 
44
50
  ## Requirements
45
51
 
46
52
  - Python 3.6 or higher
47
- - FFmpeg (for converting non-opus audio files).
53
+ - FFmpeg (for converting non-opus audio files)
48
54
  - opus-tools (specifically `opusenc` for encoding to opus format)
55
+ - mutagen (for reading audio file metadata, auto-installed when needed)
49
56
 
50
57
  Make sure FFmpeg and opus-tools are installed on your system and accessible in your PATH.
51
- If the requirements are not found in PATH. TonieToolbox will download the missing requirements.
58
+ If the requirements are not found in PATH. TonieToolbox will download the missing requirements with --auto-download.
52
59
 
53
60
  ## Installation
54
61
 
@@ -137,9 +144,14 @@ tonietoolbox -h
137
144
 
138
145
  Output:
139
146
  ```
140
- usage: TonieToolbox.py [-h] [-v] [-t TIMESTAMP] [-f FFMPEG] [-o OPUSENC]
147
+ usage: TonieToolbox.py [-h] [-v] [--upload URL] [--include-artwork] [--get-tags URL]
148
+ [--ignore-ssl-verify] [--special-folder FOLDER] [--path PATH]
149
+ [--show-progress] [--connection-timeout SECONDS]
150
+ [--read-timeout SECONDS] [--max-retries RETRIES]
151
+ [--retry-delay SECONDS] [-t TIMESTAMP] [-f FFMPEG] [-o OPUSENC]
141
152
  [-b BITRATE] [-c] [-a TAG] [-n] [-i] [-s] [-r] [-O]
142
- [-A] [-k] [-C FILE2] [-D] [-d] [-T] [-q] [-Q]
153
+ [-A] [-k] [-C FILE2] [-D] [-m] [--name-template TEMPLATE]
154
+ [--show-tags] [-d] [-T] [-q] [-Q]
143
155
  SOURCE [TARGET]
144
156
 
145
157
  Create Tonie compatible file from Ogg opus file(s).
@@ -148,6 +160,24 @@ positional arguments:
148
160
  SOURCE input file or directory or a file list (.lst)
149
161
  TARGET the output file name (default: ---ID---)
150
162
 
163
+ TeddyCloud Options:
164
+ --upload URL Upload to TeddyCloud instance (e.g., https://teddycloud.example.com). Supports .taf, .jpg, .jpeg, .png files.
165
+ --include-artwork Upload cover artwork image alongside the Tonie file when using --upload
166
+ --get-tags URL Get available tags from TeddyCloud instance
167
+ --ignore-ssl-verify Ignore SSL certificate verification (for self-signed certificates)
168
+ --special-folder FOLDER
169
+ Special folder to upload to (currently only "library" is supported)
170
+ --path PATH Path where to write the file on TeddyCloud server
171
+ --show-progress Show progress bar during file upload (default: enabled)
172
+ --connection-timeout SECONDS
173
+ Connection timeout in seconds (default: 10)
174
+ --read-timeout SECONDS
175
+ Read timeout in seconds (default: 300)
176
+ --max-retries RETRIES
177
+ Maximum number of retry attempts (default: 3)
178
+ --retry-delay SECONDS
179
+ Delay between retry attempts in seconds (default: 5)
180
+
151
181
  optional arguments:
152
182
  -h, --help show this help message and exit
153
183
  -v, --version show program version and exit
@@ -171,6 +201,12 @@ optional arguments:
171
201
  -D, --detailed-compare
172
202
  Show detailed OGG page differences when comparing files
173
203
 
204
+ Media Tag Options:
205
+ -m, --use-media-tags Use media tags from audio files for naming
206
+ --name-template TEMPLATE
207
+ Template for naming files using media tags. Example: "{album} - {artist}"
208
+ --show-tags Show available media tags from input files
209
+
174
210
  Version Check Options:
175
211
  -S, --skip-update-check
176
212
  Skip checking for updates
@@ -242,6 +278,111 @@ Process a music collection with nested album folders and save TAF files alongsid
242
278
  tonietoolbox --recursive --output-to-source "\Hörspiele\"
243
279
  ```
244
280
 
281
+ ### Media Tags
282
+
283
+ TonieToolbox can read metadata tags from audio files (such as ID3 tags in MP3 files, Vorbis comments in FLAC/OGG files, etc.) and use them to create more meaningful filenames or display information about your audio collection.
284
+
285
+ #### View available tags in audio files:
286
+
287
+ To see what tags are available in your audio files:
288
+
289
+ ```
290
+ tonietoolbox --show-tags input.mp3
291
+ ```
292
+
293
+ This will display all readable tags from the file, which can be useful for creating naming templates.
294
+
295
+ #### Use media tags for file naming:
296
+
297
+ To use the metadata from audio files when generating output filenames:
298
+
299
+ ```
300
+ tonietoolbox input.mp3 --use-media-tags
301
+ ```
302
+
303
+ For single files, this will use a default template of "{title} - {artist}" for the output filename.
304
+
305
+ #### Custom naming templates:
306
+
307
+ You can specify custom templates for generating filenames based on the audio metadata:
308
+
309
+ ```
310
+ tonietoolbox input.mp3 --use-media-tags --name-template "{artist} - {album} - {title}"
311
+ ```
312
+
313
+ #### Recursive processing with media tags:
314
+
315
+ When processing folders recursively, media tags can provide more consistent naming:
316
+
317
+ ```
318
+ tonietoolbox --recursive --use-media-tags "Music/Collection/"
319
+ ```
320
+
321
+ This will attempt to use the album information from the audio files for naming the output files:
322
+
323
+ ```
324
+ tonietoolbox --recursive --use-media-tags --name-template "{date} - {album} ({artist})" "Music/Collection/"
325
+ ```
326
+
327
+ ### TeddyCloud Upload
328
+
329
+ TonieToolbox can upload files directly to a TeddyCloud server, which is an alternative to the official Tonie cloud for managing custom Tonies.
330
+
331
+ #### Upload a Tonie file to TeddyCloud:
332
+
333
+ ```
334
+ tonietoolbox --upload https://teddycloud.example.com my_tonie.taf
335
+ ```
336
+
337
+ This will upload the specified Tonie file to the TeddyCloud server.
338
+
339
+ #### Upload a newly created Tonie file:
340
+
341
+ You can combine conversion and upload in a single command:
342
+
343
+ ```
344
+ tonietoolbox input.mp3 --upload https://teddycloud.example.com
345
+ ```
346
+
347
+ This will convert the input file to TAF format and then upload it to the TeddyCloud server.
348
+
349
+ #### Upload with custom path:
350
+
351
+ ```
352
+ tonietoolbox my_tonie.taf --upload https://teddycloud.example.com --path "/custom_audio"
353
+ The path needs to be existing in the TeddyCloud Library.
354
+ ```
355
+
356
+ #### Upload with artwork:
357
+
358
+ TonieToolbox can automatically find and upload cover artwork alongside your Tonie files:
359
+
360
+ ```
361
+ tonietoolbox my_tonie.taf --upload https://teddycloud.example.com --include-artwork
362
+ ```
363
+
364
+ This will:
365
+ 1. Look for cover images (like "cover.jpg", "artwork.png", etc.) in the source directory
366
+ 2. If no cover image is found, attempt to extract embedded artwork from the audio files
367
+ 3. Upload the artwork to the "/custom_img" directory on the TeddyCloud server
368
+ 4. The artwork will be uploaded with the same filename as the Tonie file for easier association
369
+
370
+ #### Recursive processing with uploads:
371
+
372
+ ```
373
+ tonietoolbox --recursive "Music/Albums" --upload https://teddycloud.example.com --include-artwork
374
+ ```
375
+
376
+ This will process all folders recursively, create TAF files, and upload both the TAF files and their cover artwork to the TeddyCloud server.
377
+
378
+ #### Upload with SSL certificate verification disabled:
379
+
380
+ ```
381
+ tonietoolbox my_tonie.taf --upload https://teddycloud.example.com --ignore-ssl-verify
382
+ ```
383
+
384
+ Use this option if the TeddyCloud server uses a self-signed certificate.
385
+
245
386
  ## Technical Details
246
387
 
247
388
  ### TAF (Tonie Audio Format) File Structure
@@ -320,4 +461,16 @@ This project is inspired by and builds upon the work of other Tonie-related open
320
461
 
321
462
  ## Contributing
322
463
 
323
- Contributions are welcome! Please feel free to submit a Pull Request.
464
+ Contributions are welcome! Please feel free to submit a Pull Request.
465
+
466
+ ## Legal Notice
467
+
468
+ This project is an independent, community-driven effort created for educational and personal use purposes.
469
+
470
+ - tonies®, toniebox®, Hörfigur® are registered trademarks of [tonies GmbH](https://tonies.com).
471
+ - This project is not affiliated with, endorsed by, or connected to tonies GmbH in any way.
472
+ - TonieToolbox is provided "as is" without warranty of any kind, either express or implied.
473
+ - Users are responsible for ensuring their usage complies with all applicable copyright and intellectual property laws.
474
+ - This tool is intended for personal use with legally owned content only.
475
+
476
+ By using TonieToolbox, you acknowledge that the authors of this software take no responsibility for any potential misuse or any damages that might result from the use of this software.
@@ -2,4 +2,4 @@
2
2
  TonieToolbox - Convert audio files to Tonie box compatible format
3
3
  """
4
4
 
5
- __version__ = '0.2.2'
5
+ __version__ = '0.3.0'