09.12.2018, 06:29
(
Last edited by SyS; 15/12/2018 at 04:29 AM.
)
Quote:
Thanks for yt2mp3 solution. How to get song time duration? I tried the same way as title, but it doesn't work, it gives me null string.
|
HTML Code:
<div class="col-md-9"> <p> <b>Title of Song</b> </p> <p> <b>Duration:</b> 00:03:18 </p> </div>
PHP Code:
new
Selector:DurationSelector = ParseSelector(".col-md-9>p"),
Duration[30];
GetNthElementText(html,DurationSelector,1,Duration);//second occurrence so n=1
strmid(Duration,Duration,10, sizeof Duration);//remove the Text "Duration: "
DeleteSelector(DurationSelector);