mirror of
https://github.com/TeamNewPipe/NewPipeExtractor.git
synced 2025-04-28 07:50:34 +05:30
Fix YouTube video duration parsing
This commit is contained in:
parent
98055a3c3c
commit
e39147202c
@ -142,9 +142,9 @@ public class YoutubeParsingHelper {
|
||||
default:
|
||||
throw new ParsingException("Error duration string with unknown format: " + input);
|
||||
}
|
||||
return (((Long.parseLong(Utils.removeNonDigitCharacters(days)) * 24)
|
||||
return ((((Long.parseLong(Utils.removeNonDigitCharacters(days)) * 24)
|
||||
+ Long.parseLong(Utils.removeNonDigitCharacters(hours)) * 60)
|
||||
+ Long.parseLong(Utils.removeNonDigitCharacters(minutes)) * 60)
|
||||
+ Long.parseLong(Utils.removeNonDigitCharacters(minutes))) * 60)
|
||||
+ Long.parseLong(Utils.removeNonDigitCharacters(seconds));
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user