We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a96f6eb commit 5a7ed44Copy full SHA for 5a7ed44
src/main/java/net/ericsson/emovs/download/DashDownloader.java
@@ -382,10 +382,7 @@ public void downloadManifest() throws Exception {
382
Node mpdRoot = (Node) xpath.compile(MPD).evaluate(doc, XPathConstants.NODE);
383
384
NamedNodeMap mpdAttrs = mpdRoot.getAttributes();
385
- Node mediaPresentationDurationNode = mpdAttrs.getNamedItem("mediaPresentationDuration");
386
- String mediaPresentationDuration = mediaPresentationDurationNode.getNodeValue();
387
388
- remoteManifest.durationSeconds = getDuration(mediaPresentationDuration);
389
390
System.out.println("Stream Duration: " + remoteManifest.durationSeconds);
391
0 commit comments