Skip to content

Commit cf3ea22

Browse files
committed
make stream size have a p in the end
1 parent 7fcb3f5 commit cf3ea22

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

extractor/src/main/java/org/schabi/newpipe/extractor/services/media_ccc/extractors/MediaCCCStreamExtractor.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,8 @@ public List<VideoStream> getVideoStreams() throws IOException, ExtractionExcepti
150150
throw new ExtractionException("Unknown media format: " + mimeType);
151151
}
152152

153-
154153
videoStreams.add(new VideoStream(recording.getString("recording_url"),
155-
mediaFormat,
156-
Integer.toString(recording.getInt("height"))));
154+
mediaFormat, recording.getInt("height") + "p"));
157155
}
158156
}
159157
return videoStreams;

0 commit comments

Comments
 (0)