PlaylistGeneratorPro command line switch behaviour

karlisma

New member
What is wrong with the switch [ -s] here?

run PlaylistGeneratorPro.exe "-preset=NIGHT|MORNING|DAY" [B]-s=00|01|06 -n=1|5|1[/B]"-out=D:\PLAYLIST\night_%nn.m3u8|morning_%nn.m3u8|day_%nn.m3u8"

-n=1|5|1 works as intended [creates exact amount of playlists from each preset]
-s=00|01|06 does not work [every preset's playlist numbering restarts with 00]


so the result I now get is (wrong %nn values)

00_night.m3u8
00_morning.m3u8
01_morning.m3u8
02_morning.m3u8
03_morning.m3u8
04_morning.m3u8
00_day.m3u8
instead of (%nn values can be then loaded with ?hh mask)
00_night.m3u8
[B]01_[/B]morning.m3u8
[B]02_[/B]morning.m3u8
[B]03_[/B]morning.m3u8
[B]04_[/B]morning.m3u8
[B]05_[/B]morning.m3u8
[B]06_[/B]day.m3u8
actually would like to use much simplier file names
run PlaylistGeneratorPro.exe "-preset=NIGHT|MORNING|DAY" -s=00 -n=1|5|1"-out=D:\PLAYLIST\[B]playlist_%nn[/B].m3u8"
But that makes PlGen Error: 4 (preset and file name count mismatch)
 
Back
Top