mirror of
https://github.com/fiso64/slsk-batchdl.git
synced 2024-12-22 06:22:41 +00:00
--title-col
This commit is contained in:
parent
6a2e68e562
commit
317ff262c3
2 changed files with 4 additions and 3 deletions
|
@ -34,7 +34,7 @@ public class Config
|
||||||
public string password = "";
|
public string password = "";
|
||||||
public string artistCol = "";
|
public string artistCol = "";
|
||||||
public string albumCol = "";
|
public string albumCol = "";
|
||||||
public string trackCol = "";
|
public string titleCol = "";
|
||||||
public string ytIdCol = "";
|
public string ytIdCol = "";
|
||||||
public string descCol = "";
|
public string descCol = "";
|
||||||
public string trackCountCol = "";
|
public string trackCountCol = "";
|
||||||
|
@ -713,7 +713,8 @@ public class Config
|
||||||
break;
|
break;
|
||||||
case "--tc":
|
case "--tc":
|
||||||
case "--track-col":
|
case "--track-col":
|
||||||
trackCol = args[++i];
|
case "--title-col":
|
||||||
|
titleCol = args[++i];
|
||||||
break;
|
break;
|
||||||
case "--alc":
|
case "--alc":
|
||||||
case "--album-col":
|
case "--album-col":
|
||||||
|
|
|
@ -23,7 +23,7 @@ namespace Extractors
|
||||||
|
|
||||||
csvFilePath = input;
|
csvFilePath = input;
|
||||||
|
|
||||||
var tracks = await ParseCsvIntoTrackInfo(input, Config.I.artistCol, Config.I.trackCol, Config.I.lengthCol,
|
var tracks = await ParseCsvIntoTrackInfo(input, Config.I.artistCol, Config.I.titleCol, Config.I.lengthCol,
|
||||||
Config.I.albumCol, Config.I.descCol, Config.I.ytIdCol, Config.I.trackCountCol, Config.I.timeUnit, Config.I.ytParse);
|
Config.I.albumCol, Config.I.descCol, Config.I.ytIdCol, Config.I.trackCountCol, Config.I.timeUnit, Config.I.ytParse);
|
||||||
|
|
||||||
if (reverse)
|
if (reverse)
|
||||||
|
|
Loading…
Reference in a new issue