Change tag parser for better file support

Should support mp3, ogg, wav, flac and more.
This commit is contained in:
Lynn Smeria 2018-08-17 19:53:14 +03:00
parent 09fa089cfe
commit 15483c0354
7 changed files with 112 additions and 71 deletions

20
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,20 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Organise",
"args": ["${workspaceFolder}/src/cli.js", "organise", "test", "out"],
"console": "integratedTerminal",
"skipFiles": [
"${workspaceRoot}/node_modules/**/*.js",
"<node_internals>/**/*.js"
],
"env": {
"DEBUG": "publikator:*",
"DEBUG_COLORS": "1"
}
}
]
}