An open API service indexing awesome lists of open source software.

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

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`.

## License

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.