1
0
mirror of https://github.com/openeggbert/youtubedl-frontend.git synced 2025-03-30 06:55:30 +02:00

266 lines
11 KiB
Java
Raw Normal View History

2024-06-30 20:44:05 +02:00
/*
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
*/
package org.nanoboot.archiveboxyoutubehelper;
2024-07-02 20:06:34 +02:00
import com.fasterxml.jackson.core.JsonProcessingException;
2024-06-30 20:44:05 +02:00
import com.fasterxml.jackson.databind.ObjectMapper;
import io.humble.video.Demuxer;
import io.humble.video.DemuxerFormat;
import io.humble.video.Global;
import java.io.BufferedInputStream;
import java.io.File;
2024-07-02 20:06:34 +02:00
import java.io.FileInputStream;
2024-06-30 20:44:05 +02:00
import java.io.FileOutputStream;
2024-07-02 20:06:34 +02:00
import java.io.FileWriter;
2024-06-30 20:44:05 +02:00
import java.io.IOException;
import java.net.URL;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Optional;
2024-07-02 20:06:34 +02:00
import java.util.Properties;
2024-06-30 20:44:05 +02:00
import lombok.AllArgsConstructor;
import lombok.Data;
2024-07-02 20:06:34 +02:00
import lombok.NoArgsConstructor;
2024-06-30 20:44:05 +02:00
import org.json.JSONArray;
import org.json.JSONObject;
/**
*
* @author robertvokac
*/
@Data
@AllArgsConstructor
2024-07-02 20:06:34 +02:00
@NoArgsConstructor
2024-06-30 20:44:05 +02:00
public class YoutubeVideo implements Comparable<YoutubeVideo> {
private String id;
private String snapshot;
private String title;
private String videoFileName = "";
private long videoFileSizeInBytes = 0;
private String videoFileSha512HashSum = "";
private String videoDuration = "";
private String channelName;
private String channelUrl;
private String channelId;
private String uploadDate;
2024-07-01 21:27:19 +02:00
private long timestamp;
2024-06-30 20:44:05 +02:00
private String description;
private String thumbnail;
private List<YoutubeComment> comments = new ArrayList<>();
2024-07-01 21:27:19 +02:00
private String previousVideoId = null;
private String nextVideoId = null;
private String ext = null;
private int number;
2024-07-02 20:06:34 +02:00
//
2024-07-01 21:27:19 +02:00
public static final List<String> missingYoutubeVideos = new ArrayList<>();
2024-07-02 20:06:34 +02:00
public YoutubeVideo(File mediaDirectory) throws InterruptedException, IOException {
2024-06-30 20:44:05 +02:00
File metadataFile = new File(mediaDirectory, "metadata");
if (!Main.ALWAYS_COMPUTE_METADATA && metadataFile.exists()) {
2024-07-02 20:06:34 +02:00
YoutubeVideo yv = new YoutubeVideo();
//new ObjectMapper().readValue(Utils.readTextFromFile(metadataFile), YoutubeVideo.class);
Properties properties = new Properties();
properties.load(new FileInputStream(metadataFile));
id = properties.getProperty("id");
if (!Main.argVideo.isBlank() && !id.equals(Main.argVideo)) {
return;
}
snapshot = properties.getProperty("snapshot");
title = properties.getProperty("title");
videoFileName = properties.getProperty("videoFileName");
videoFileSizeInBytes = Long.valueOf(properties.getProperty("videoFileSizeInBytes"));
videoFileSha512HashSum = properties.getProperty("videoFileSha512HashSum");
videoDuration = properties.getProperty("videoDuration");
channelName = properties.getProperty("channelName");
channelUrl = properties.getProperty("channelUrl");
channelId = properties.getProperty("channelId");
uploadDate = properties.getProperty("uploadDate");
timestamp = Long.parseLong(properties.getProperty("timestamp"));
description = properties.getProperty("description");
thumbnail = properties.getProperty("thumbnail");
comments = new ArrayList<>();
JSONArray ja = new JSONArray(properties.getProperty("comments"));
ja.forEach(o -> {
JSONObject jo = (JSONObject) o;
try {
final String toString = o.toString();
System.out.println(toString);
comments.add(new ObjectMapper().readValue(toString, YoutubeComment.class));
} catch (JsonProcessingException ex) {
throw new ArchiveBoxYoutubeHelperException(ex.getMessage());
}
}
);
previousVideoId = properties.getProperty("previousVideoId");
nextVideoId = properties.getProperty("nextVideoId");
ext = properties.getProperty("ext");
number = Integer.valueOf(properties.getProperty("number"));
2024-06-30 20:44:05 +02:00
return;
}
List<File> files = Arrays.asList(mediaDirectory.listFiles());
Optional<File> jsonFile = files.stream().filter(f -> f.getName().endsWith(".json")).findFirst();
String json = jsonFile.isPresent() ? Utils.readTextFromFile(jsonFile.get()) : "";
JSONObject jsonObject = new JSONObject(json);
2024-07-02 20:06:34 +02:00
id = jsonObject.getString("id");
// if(!Main.argVideo.isBlank() && !id.equals(Main.argVideo)) {
// return;
// }
2024-06-30 20:44:05 +02:00
thumbnail = jsonObject.getString("thumbnail");
if (thumbnail == null) {
thumbnail = "";
}
File thumbnailFile = new File(mediaDirectory, "thumbnail.jpg");
if (!thumbnailFile.exists() && thumbnail != null) {
try (BufferedInputStream in = new BufferedInputStream(new URL(thumbnail).openStream()); FileOutputStream fileOutputStream = new FileOutputStream(thumbnailFile.getAbsolutePath())) {
byte dataBuffer[] = new byte[1024];
int bytesRead;
while ((bytesRead = in.read(dataBuffer, 0, 1024)) != -1) {
fileOutputStream.write(dataBuffer, 0, bytesRead);
}
} catch (IOException e) {
System.out.println(e.getMessage());
}
}
//
Optional<File> descriptionFile = files.stream().filter(f -> f.getName().endsWith(".description")).findFirst();
2024-07-01 21:27:19 +02:00
ext = jsonObject.getString("ext");
2024-07-02 20:06:34 +02:00
2024-06-30 20:44:05 +02:00
Optional<File> videoFile = files
.stream()
2024-07-02 20:06:34 +02:00
.filter(f
-> (f.getName().endsWith("." + ext))
|| (f.getName().endsWith(".mp4"))
|| (f.getName().endsWith(".mkv"))
2024-06-30 20:44:05 +02:00
)
2024-07-02 20:06:34 +02:00
// .filter(
// f -> !f.getName().endsWith(".description")
// && !f.getName().endsWith(".json")
// && !f.getName().equals("metadata")
// && !f.getName().endsWith(thumbnail)
// )
2024-06-30 20:44:05 +02:00
.findFirst();
2024-07-02 20:06:34 +02:00
2024-07-01 21:27:19 +02:00
snapshot = mediaDirectory.getParentFile().getName();
2024-07-02 20:06:34 +02:00
if (videoFile.isEmpty()) {
missingYoutubeVideos.add(id);
}
2024-06-30 20:44:05 +02:00
this.description = descriptionFile.isPresent() ? Utils.readTextFromFile(descriptionFile.get()) : "";
title = jsonObject.getString("title");
if (videoFile.isPresent() && !videoFile.get().getName().endsWith(".part")) {
final File videoFileGet = videoFile.get();
videoFileName = videoFileGet.getName();
videoFileSizeInBytes = videoFileGet.length();
videoFileSha512HashSum = Utils.calculateSHA512Hash(videoFileGet);
videoDuration = getVideoFormattedDuration(videoFileGet.getAbsolutePath());
}
channelName = jsonObject.getString("channel");
channelUrl = jsonObject.getString("channel_url");
channelId = jsonObject.getString("channel_id");
uploadDate = jsonObject.getString("upload_date");
2024-07-01 21:27:19 +02:00
timestamp = jsonObject.getLong("timestamp");
2024-06-30 20:44:05 +02:00
if (jsonObject.has("comments")) {
final JSONArray jsonArray = jsonObject.getJSONArray("comments");
for (int i = 0; i < jsonArray.length(); i++) {
Object o = jsonArray.get(i);
//System.out.println("instance of=" + o.getClass().getName());
comments.add(new YoutubeComment((JSONObject) o));
}
}
2024-07-02 20:06:34 +02:00
this.comments = YoutubeComment.sort(this.comments);
//
Properties properties = new Properties();
properties.put("id", id);
properties.put("snapshot", snapshot);
properties.put("title", title);
properties.put("videoFileName", videoFileName);
properties.put("videoFileSizeInBytes", String.valueOf(videoFileSizeInBytes));
properties.put("videoFileSha512HashSum", videoFileSha512HashSum);
properties.put("videoDuration", videoDuration);
properties.put("channelName", channelName);
properties.put("channelUrl", channelUrl);
properties.put("channelId", channelId);
properties.put("uploadDate", uploadDate);
properties.put("timestamp", String.valueOf(timestamp));
properties.put("description", description);
properties.put("thumbnail", thumbnail);
properties.put("comments", new JSONArray(comments).toString());
if (previousVideoId != null) {
properties.put("previousVideoId", previousVideoId);
}
if (nextVideoId != null) {
properties.put("nextVideoId", nextVideoId);
}
properties.put("ext", ext);
properties.put("number", String.valueOf(number));
//Utils.writeTextToFile(new JSONObject(this).toString(), metadataFile);
properties.store(new FileWriter(metadataFile), "store to properties file");
2024-06-30 20:44:05 +02:00
}
private static String getVideoFormattedDuration(String arg) throws InterruptedException, IOException {
final Demuxer demuxer = Demuxer.make();
demuxer.open(arg, null, false, true, null, null);
final DemuxerFormat format = demuxer.getFormat();
final long duration = demuxer.getDuration();
return formatTimeStamp(duration);
}
/**
* Pretty prints a timestamp (in {@link Global.NO_PTS} units) into a string.
*
* @param duration A timestamp in {@link Global.NO_PTS} units).
* @return A string representing the duration.
*/
private static String formatTimeStamp(long duration) {
if (duration == Global.NO_PTS) {
return "00:00:00.00";
}
double d = 1.0 * duration / Global.DEFAULT_PTS_PER_SECOND;
//System.out.println("duration="+ d);
int hours = (int) (d / (60 * 60));
int mins = (int) ((d - hours * 60 * 60) / 60);
int secs = (int) (d - hours * 60 * 60 - mins * 60);
int subsecs = (int) ((d - (hours * 60 * 60.0 + mins * 60.0 + secs)) * 100.0);
return String.format("%1$02d:%2$02d:%3$02d.%4$02d", hours, mins, secs, subsecs);
}
@Override
public int compareTo(YoutubeVideo o) {
if (this.channelName != null && o.channelName != null && this.channelName.contentEquals(o.channelName)) {
2024-07-02 20:06:34 +02:00
if (this.uploadDate.equals(o.uploadDate)) {
2024-07-01 21:27:19 +02:00
return Long.valueOf(timestamp).compareTo(o.timestamp);
} else {
2024-07-02 20:06:34 +02:00
return this.uploadDate.compareTo(o.uploadDate);
2024-07-01 21:27:19 +02:00
}
2024-06-30 20:44:05 +02:00
} else {
if (this.channelName != null && o.channelName != null) {
return this.channelName.compareTo(o.channelName);
} else {
return 0;
}
}
}
}