1
0
mirror of https://github.com/RipMeApp/ripme.git synced 2025-09-01 09:53:53 +02:00

Twitter ripper no longer errors out on some videos

This commit is contained in:
cyian-1756
2018-06-16 12:37:31 -04:00
parent c4d6f6d9fd
commit 21a1af7d31

View File

@@ -194,9 +194,13 @@ public class TwitterRipper extends AlbumRipper {
// Loop over all the video options and find the biggest video
for (int j = 0; j < medias.length(); j++) {
JSONObject variant = (JSONObject) variants.get(i);
if (variant.getInt("bitrate") > largestBitrate) {
largestBitrate = variant.getInt("bitrate");
urlToDownload = variant.getString("url");
LOGGER.info(variant);
// If the video doesn't have a bitrate it's a m3u8 file we can't download
if (variant.has("bitrate")) {
if (variant.getInt("bitrate") > largestBitrate) {
largestBitrate = variant.getInt("bitrate");
urlToDownload = variant.getString("url");
}
}
}
if (urlToDownload != null) {