https://github.com/bitwizeshift/playlistmigrator
Migrates files specified in a playlist to a new location
https://github.com/bitwizeshift/playlistmigrator
Last synced: about 2 months ago
JSON representation
Migrates files specified in a playlist to a new location
- Host: GitHub
- URL: https://github.com/bitwizeshift/playlistmigrator
- Owner: bitwizeshift
- License: mit
- Created: 2016-01-18T07:42:40.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-12-25T03:30:23.000Z (about 7 years ago)
- Last Synced: 2024-12-28T17:14:06.818Z (about 1 year ago)
- Language: Java
- Size: 85 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# PlaylistMigrator
This is a small toy project I wrote to help migrate playlists stored in `.m3u` format (soon to support more formats).
It copies all files in a given playlist over to a specified output. This can be done in one of two different ways:
## Features
- [x] Two modes of migrating files
- [x] Flattens files to the same directory
- [x] Preserves subdirectory structures
- [x] Support for `.pls` playlist
- [x] Support for `.m3u` playlist
## How to Build
From terminal, invoke:
```sh
./gradlew build # 'gradlew.bat build' on Windows
```
The resulting binary will be in `build/libs/PlaylistMigrator-.jar`
## How to Use
This program is command-line only. To run it, simply run `java -jar PlaylistMigrator.jar [options...]`
For a full list of options, pass either `-h` or `--help`.

This project is licensed under the [MIT License](http://opensource.org/licenses/MIT):
Copyright © 2016 Matthew Rodusek
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.