2024-06-06 01:08:13 +00:00
using System ;
2024-05-04 15:35:32 +00:00
using System.Collections.Generic ;
using System.Collections.ObjectModel ;
using System.Collections.Specialized ;
using System.Globalization ;
using System.IO ;
using System.Linq ;
using System.Net ;
using System.Net.Http ;
using System.Text ;
using System.Text.RegularExpressions ;
using System.Threading.Tasks ;
2024-06-24 15:40:20 +00:00
using System.Xml ;
2024-05-04 15:35:32 +00:00
using Avalonia.Media ;
using CRD.Utils ;
using CRD.Utils.CustomList ;
using CRD.Utils.DRM ;
2024-06-24 15:40:20 +00:00
using CRD.Utils.Files ;
2024-05-04 15:35:32 +00:00
using CRD.Utils.HLS ;
using CRD.Utils.Muxing ;
2024-05-25 22:02:45 +00:00
using CRD.Utils.Sonarr ;
using CRD.Utils.Sonarr.Models ;
2024-05-04 15:35:32 +00:00
using CRD.Utils.Structs ;
2024-06-26 22:04:50 +00:00
using CRD.Utils.Structs.History ;
2024-05-04 15:35:32 +00:00
using CRD.ViewModels ;
using CRD.Views ;
using HtmlAgilityPack ;
using Newtonsoft.Json ;
using Newtonsoft.Json.Linq ;
using ReactiveUI ;
using LanguageItem = CRD . Utils . Structs . LanguageItem ;
namespace CRD.Downloader ;
public class Crunchyroll {
public CrToken ? Token ;
public CrCmsToken ? CmsToken ;
public CrProfile Profile = new ( ) ;
public CrDownloadOptions CrunOptions ;
#region Download Variables
public RefreshableObservableCollection < CrunchyEpMeta > Queue = new RefreshableObservableCollection < CrunchyEpMeta > ( ) ;
public ObservableCollection < DownloadItemModel > DownloadItemModels = new ObservableCollection < DownloadItemModel > ( ) ;
public int ActiveDownloads ;
#endregion
#region Calendar Variables
private Dictionary < string , CalendarWeek > calendar = new ( ) ;
2024-07-13 12:08:58 +00:00
2024-07-12 02:35:33 +00:00
private Dictionary < string , string > calendarLanguage = new ( ) {
{ "en-us" , "https://www.crunchyroll.com/simulcastcalendar" } ,
{ "es" , "https://www.crunchyroll.com/es/simulcastcalendar" } ,
{ "es-es" , "https://www.crunchyroll.com/es-es/simulcastcalendar" } ,
{ "pt-br" , "https://www.crunchyroll.com/pt-br/simulcastcalendar" } ,
{ "pt-pt" , "https://www.crunchyroll.com/pt-pt/simulcastcalendar" } ,
{ "fr" , "https://www.crunchyroll.com/fr/simulcastcalendar" } ,
{ "de" , "https://www.crunchyroll.com/de/simulcastcalendar" } ,
{ "ar" , "https://www.crunchyroll.com/ar/simulcastcalendar" } ,
{ "it" , "https://www.crunchyroll.com/it/simulcastcalendar" } ,
{ "ru" , "https://www.crunchyroll.com/ru/simulcastcalendar" } ,
{ "hi" , "https://www.crunchyroll.com/hi/simulcastcalendar" } ,
} ;
2024-05-04 15:35:32 +00:00
#endregion
#region History Variables
public ObservableCollection < HistorySeries > HistoryList = new ( ) ;
public HistorySeries SelectedSeries = new HistorySeries {
Seasons = [ ]
} ;
2024-05-25 22:02:45 +00:00
public List < SonarrSeries > SonarrSeries = [ ] ;
2024-05-04 15:35:32 +00:00
#endregion
2024-07-16 23:52:46 +00:00
2024-06-27 20:52:12 +00:00
public string DefaultLocale = "en-US" ;
2024-05-04 15:35:32 +00:00
public JsonSerializerSettings ? SettingsJsonSerializerSettings = new ( ) {
NullValueHandling = NullValueHandling . Ignore ,
} ;
private Widevine _widevine = Widevine . Instance ;
public CrAuth CrAuth ;
public CrEpisode CrEpisode ;
public CrSeries CrSeries ;
public History CrHistory ;
#region Singelton
private static Crunchyroll ? _instance ;
private static readonly object Padlock = new ( ) ;
public static Crunchyroll Instance {
get {
if ( _instance = = null ) {
lock ( Padlock ) {
if ( _instance = = null ) {
_instance = new Crunchyroll ( ) ;
}
}
}
return _instance ;
}
}
#endregion
2024-06-24 20:29:13 +00:00
public Crunchyroll ( ) {
CrunOptions = new CrDownloadOptions ( ) ;
2024-06-26 22:04:50 +00:00
Queue . CollectionChanged + = UpdateItemListOnRemove ;
2024-06-24 20:29:13 +00:00
}
2024-06-26 22:04:50 +00:00
2024-07-16 23:52:46 +00:00
public void InitOptions ( ) {
2024-06-24 20:29:13 +00:00
CrunOptions . AutoDownload = false ;
CrunOptions . RemoveFinishedDownload = false ;
2024-05-04 15:35:32 +00:00
CrunOptions . Chapters = true ;
CrunOptions . Hslang = "none" ;
CrunOptions . Force = "Y" ;
2024-06-19 00:16:02 +00:00
CrunOptions . FileName = "${seriesTitle} - S${season}E${episode} [${height}p]" ;
2024-05-04 15:35:32 +00:00
CrunOptions . Partsize = 10 ;
CrunOptions . DlSubs = new List < string > { "de-DE" } ;
CrunOptions . Skipmux = false ;
CrunOptions . MkvmergeOptions = new List < string > { "--no-date" , "--disable-track-statistics-tags" , "--engage no_variable_data" } ;
2024-06-19 00:16:02 +00:00
CrunOptions . FfmpegOptions = new ( ) ;
CrunOptions . DefaultAudio = "ja-JP" ;
CrunOptions . DefaultSub = "de-DE" ;
2024-05-04 15:35:32 +00:00
CrunOptions . CcTag = "cc" ;
CrunOptions . FsRetryTime = 5 ;
CrunOptions . Numbers = 2 ;
CrunOptions . Timeout = 15000 ;
CrunOptions . DubLang = new List < string > ( ) { "ja-JP" } ;
CrunOptions . SimultaneousDownloads = 2 ;
CrunOptions . AccentColor = Colors . SlateBlue . ToString ( ) ;
CrunOptions . Theme = "System" ;
2024-07-13 12:08:58 +00:00
CrunOptions . SelectedCalendarLanguage = "en-us" ;
2024-07-12 13:53:44 +00:00
CrunOptions . CalendarDubFilter = "none" ;
2024-05-22 21:22:02 +00:00
CrunOptions . DlVideoOnce = true ;
2024-06-19 01:50:10 +00:00
CrunOptions . StreamEndpoint = "web/firefox" ;
2024-06-19 10:37:06 +00:00
CrunOptions . SubsAddScaledBorder = ScaledBorderAndShadowSelection . ScaledBorderAndShadowYes ;
2024-07-16 23:52:46 +00:00
CrunOptions . HistoryLang = DefaultLocale ;
2024-05-04 15:35:32 +00:00
CrunOptions . History = true ;
CfgManager . UpdateSettingsFromFile ( ) ;
2024-07-16 23:52:46 +00:00
_widevine = Widevine . Instance ;
CrAuth = new CrAuth ( ) ;
CrEpisode = new CrEpisode ( ) ;
CrSeries = new CrSeries ( ) ;
CrHistory = new History ( ) ;
Profile = new CrProfile {
Username = "???" ,
Avatar = "003-cr-hime-excited.png" ,
PreferredContentAudioLanguage = "ja-JP" ,
PreferredContentSubtitleLanguage = "de-DE" ,
HasPremium = false ,
} ;
Console . WriteLine ( $"Can Decrypt: {_widevine.canDecrypt}" ) ;
}
public async Task Init ( ) {
2024-07-13 12:08:58 +00:00
2024-07-12 02:35:33 +00:00
if ( CrunOptions . LogMode ) {
CfgManager . EnableLogMode ( ) ;
} else {
CfgManager . DisableLogMode ( ) ;
}
2024-05-24 22:46:11 +00:00
2024-07-12 02:35:33 +00:00
if ( CfgManager . CheckIfFileExists ( CfgManager . PathCrToken ) ) {
Token = CfgManager . DeserializeFromFile < CrToken > ( CfgManager . PathCrToken ) ;
CrAuth . LoginWithToken ( ) ;
} else {
await CrAuth . AuthAnonymous ( ) ;
}
2024-07-13 12:08:58 +00:00
2024-05-04 15:35:32 +00:00
if ( CrunOptions . History ) {
if ( File . Exists ( CfgManager . PathCrHistory ) ) {
2024-07-16 23:52:46 +00:00
var decompressedJson = CfgManager . DecompressJsonFile ( CfgManager . PathCrHistory ) ;
if ( ! string . IsNullOrEmpty ( decompressedJson ) ) {
HistoryList = JsonConvert . DeserializeObject < ObservableCollection < HistorySeries > > ( decompressedJson ) ? ? new ObservableCollection < HistorySeries > ( ) ;
foreach ( var historySeries in HistoryList ) {
historySeries . Init ( ) ;
foreach ( var historySeriesSeason in historySeries . Seasons ) {
historySeriesSeason . Init ( ) ;
}
}
} else {
HistoryList = [ ] ;
}
2024-05-25 22:02:45 +00:00
2024-07-16 23:52:46 +00:00
RefreshSonarr ( ) ;
}
2024-05-04 15:35:32 +00:00
}
}
2024-05-25 22:02:45 +00:00
public async void RefreshSonarr ( ) {
2024-06-11 21:58:44 +00:00
await SonarrClient . Instance . CheckSonarrSettings ( ) ;
if ( CrunOptions . SonarrProperties is { SonarrEnabled : true } ) {
2024-05-25 22:02:45 +00:00
SonarrSeries = await SonarrClient . Instance . GetSeries ( ) ;
CrHistory . MatchHistorySeriesWithSonarr ( true ) ;
}
}
2024-06-06 01:08:13 +00:00
2024-06-26 22:04:50 +00:00
private void UpdateItemListOnRemove ( object? sender , NotifyCollectionChangedEventArgs e ) {
if ( e . Action = = NotifyCollectionChangedAction . Remove ) {
if ( e . OldItems ! = null )
foreach ( var eOldItem in e . OldItems ) {
var downloadItem = DownloadItemModels . FirstOrDefault ( e = > e . epMeta . Equals ( eOldItem ) ) ;
if ( downloadItem ! = null ) {
DownloadItemModels . Remove ( downloadItem ) ;
} else {
Console . Error . WriteLine ( "Failed to Remove Episode from list" ) ;
}
}
}
UpdateDownloadListItems ( ) ;
}
2024-07-13 12:08:58 +00:00
2024-06-26 22:04:50 +00:00
public void UpdateDownloadListItems ( ) {
var list = Queue ;
foreach ( CrunchyEpMeta crunchyEpMeta in list ) {
var downloadItem = DownloadItemModels . FirstOrDefault ( e = > e . epMeta . Equals ( crunchyEpMeta ) ) ;
if ( downloadItem ! = null ) {
downloadItem . Refresh ( ) ;
} else {
downloadItem = new DownloadItemModel ( crunchyEpMeta ) ;
downloadItem . LoadImage ( ) ;
DownloadItemModels . Add ( downloadItem ) ;
}
if ( downloadItem is { isDownloading : false , Error : false } & & CrunOptions . AutoDownload & & ActiveDownloads < CrunOptions . SimultaneousDownloads ) {
downloadItem . StartDownload ( ) ;
}
}
}
2024-05-04 15:35:32 +00:00
public async Task < CalendarWeek > GetCalendarForDate ( string weeksMondayDate , bool forceUpdate ) {
if ( ! forceUpdate & & calendar . TryGetValue ( weeksMondayDate , out var forDate ) ) {
return forDate ;
}
2024-07-13 12:08:58 +00:00
var request = calendarLanguage . ContainsKey ( CrunOptions . SelectedCalendarLanguage ? ? "de" )
? HttpClientReq . CreateRequestMessage ( $"{calendarLanguage[CrunOptions.SelectedCalendarLanguage ?? " de "]}?filter=premium&date={weeksMondayDate}" , HttpMethod . Get , false , false , null )
: HttpClientReq . CreateRequestMessage ( $"{calendarLanguage[" en - us "]}?filter=premium&date={weeksMondayDate}" , HttpMethod . Get , false , false , null ) ;
2024-05-04 15:35:32 +00:00
2024-07-08 10:49:10 +00:00
request . Headers . Accept . ParseAdd ( "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8" ) ;
request . Headers . AcceptEncoding . ParseAdd ( "gzip, deflate, br" ) ;
2024-07-13 12:08:58 +00:00
2024-05-04 15:35:32 +00:00
var response = await HttpClientReq . Instance . SendHttpRequest ( request ) ;
CalendarWeek week = new CalendarWeek ( ) ;
week . CalendarDays = new List < CalendarDay > ( ) ;
// Load the HTML content from a file
HtmlDocument doc = new HtmlDocument ( ) ;
doc . LoadHtml ( WebUtility . HtmlDecode ( response . ResponseContent ) ) ;
// Select each 'li' element with class 'day'
var dayNodes = doc . DocumentNode . SelectNodes ( "//li[contains(@class, 'day')]" ) ;
if ( dayNodes ! = null ) {
foreach ( var day in dayNodes ) {
// Extract the date and day name
var date = day . SelectSingleNode ( ".//time[@datetime]" ) ? . GetAttributeValue ( "datetime" , "No date" ) ;
DateTime dayDateTime = DateTime . Parse ( date , null , DateTimeStyles . RoundtripKind ) ;
if ( week . FirstDayOfWeek = = null ) {
week . FirstDayOfWeek = dayDateTime ;
week . FirstDayOfWeekString = dayDateTime . ToString ( "yyyy-MM-dd" ) ;
}
var dayName = day . SelectSingleNode ( ".//h1[@class='day-name']/time" ) ? . InnerText . Trim ( ) ;
CalendarDay calDay = new CalendarDay ( ) ;
calDay . CalendarEpisodes = new List < CalendarEpisode > ( ) ;
calDay . DayName = dayName ;
calDay . DateTime = dayDateTime ;
// Iterate through each episode listed under this day
var episodes = day . SelectNodes ( ".//article[contains(@class, 'release')]" ) ;
if ( episodes ! = null ) {
foreach ( var episode in episodes ) {
var episodeTimeStr = episode . SelectSingleNode ( ".//time[contains(@class, 'available-time')]" ) ? . GetAttributeValue ( "datetime" , null ) ;
DateTime episodeTime = DateTime . Parse ( episodeTimeStr , null , DateTimeStyles . RoundtripKind ) ;
var hasPassed = DateTime . Now > episodeTime ;
var episodeName = episode . SelectSingleNode ( ".//h1[contains(@class, 'episode-name')]" ) ? . SelectSingleNode ( ".//cite[@itemprop='name']" ) ? . InnerText . Trim ( ) ;
var seasonLink = episode . SelectSingleNode ( ".//a[contains(@class, 'js-season-name-link')]" ) ? . GetAttributeValue ( "href" , "No link" ) ;
var episodeLink = episode . SelectSingleNode ( ".//a[contains(@class, 'available-episode-link')]" ) ? . GetAttributeValue ( "href" , "No link" ) ;
var thumbnailUrl = episode . SelectSingleNode ( ".//img[contains(@class, 'thumbnail')]" ) ? . GetAttributeValue ( "src" , "No image" ) ;
var isPremiumOnly = episode . SelectSingleNode ( ".//svg[contains(@class, 'premium-flag')]" ) ! = null ;
2024-06-11 21:58:44 +00:00
var isPremiere = episode . SelectSingleNode ( ".//div[contains(@class, 'premiere-flag')]" ) ! = null ;
2024-05-04 15:35:32 +00:00
var seasonName = episode . SelectSingleNode ( ".//a[contains(@class, 'js-season-name-link')]" ) ? . SelectSingleNode ( ".//cite[@itemprop='name']" ) ? . InnerText . Trim ( ) ;
var episodeNumber = episode . SelectSingleNode ( ".//meta[contains(@itemprop, 'episodeNumber')]" ) ? . GetAttributeValue ( "content" , "?" ) ;
CalendarEpisode calEpisode = new CalendarEpisode ( ) ;
calEpisode . DateTime = episodeTime ;
calEpisode . HasPassed = hasPassed ;
calEpisode . EpisodeName = episodeName ;
2024-07-12 02:35:33 +00:00
calEpisode . SeriesUrl = seasonLink ;
2024-05-04 15:35:32 +00:00
calEpisode . EpisodeUrl = episodeLink ;
calEpisode . ThumbnailUrl = thumbnailUrl ;
calEpisode . IsPremiumOnly = isPremiumOnly ;
2024-06-11 21:58:44 +00:00
calEpisode . IsPremiere = isPremiere ;
2024-05-04 15:35:32 +00:00
calEpisode . SeasonName = seasonName ;
calEpisode . EpisodeNumber = episodeNumber ;
calDay . CalendarEpisodes . Add ( calEpisode ) ;
}
}
week . CalendarDays . Add ( calDay ) ;
}
} else {
2024-06-19 00:16:02 +00:00
Console . Error . WriteLine ( "No days found in the HTML document." ) ;
2024-05-04 15:35:32 +00:00
}
calendar [ weeksMondayDate ] = week ;
return week ;
}
2024-06-28 03:28:45 +00:00
public async Task AddEpisodeToQue ( string epId , string crLocale , List < string > dubLang , bool updateHistory = false ) {
2024-05-04 15:35:32 +00:00
await CrAuth . RefreshToken ( true ) ;
2024-06-27 20:52:12 +00:00
var episodeL = await CrEpisode . ParseEpisodeById ( epId , crLocale ) ;
2024-05-04 15:35:32 +00:00
if ( episodeL ! = null ) {
2024-06-21 01:49:44 +00:00
if ( episodeL . Value . IsPremiumOnly & & ! Profile . HasPremium ) {
2024-05-24 22:46:11 +00:00
MessageBus . Current . SendMessage ( new ToastMessage ( $"Episode is a premium episode – make sure that you are signed in with an account that has an active premium subscription" , ToastType . Error , 3 ) ) ;
2024-05-04 15:35:32 +00:00
return ;
}
2024-07-13 12:08:58 +00:00
var sList = await CrEpisode . EpisodeData ( ( CrunchyEpisode ) episodeL , updateHistory ) ;
2024-07-16 23:52:46 +00:00
( HistoryEpisode ? historyEpisode , List < string > dublist , string downloadDirPath ) historyEpisode = ( null , [ ] , "" ) ;
if ( CrunOptions . History ) {
var episode = sList . EpisodeAndLanguages . Items . First ( ) ;
historyEpisode = CrHistory . GetHistoryEpisodeWithDubListAndDownloadDir ( episode . SeriesId , episode . SeasonId , episode . Id ) ;
if ( historyEpisode . dublist . Count > 0 ) {
dubLang = historyEpisode . dublist ;
}
}
2024-06-21 01:49:44 +00:00
var selected = CrEpisode . EpisodeMeta ( sList , dubLang ) ;
2024-07-13 12:08:58 +00:00
2024-06-27 20:52:12 +00:00
if ( CrunOptions . IncludeVideoDescription ) {
if ( selected . Data is { Count : > 0 } ) {
var episode = await CrEpisode . ParseEpisodeById ( selected . Data . First ( ) . MediaId , string . IsNullOrEmpty ( CrunOptions . DescriptionLang ) ? DefaultLocale : CrunOptions . DescriptionLang , true ) ;
selected . Description = episode ? . Description ? ? selected . Description ;
}
}
2024-06-11 21:58:44 +00:00
2024-06-21 01:49:44 +00:00
if ( selected . Data is { Count : > 0 } ) {
if ( CrunOptions . History ) {
2024-07-16 23:52:46 +00:00
// var historyEpisode = CrHistory.GetHistoryEpisodeWithDownloadDir(selected.ShowId, selected.SeasonId, selected.Data.First().MediaId);
2024-06-21 01:49:44 +00:00
if ( CrunOptions . SonarrProperties is { SonarrEnabled : true , UseSonarrNumbering : true } ) {
if ( historyEpisode . historyEpisode ! = null ) {
if ( ! string . IsNullOrEmpty ( historyEpisode . historyEpisode . SonarrEpisodeNumber ) ) {
selected . EpisodeNumber = historyEpisode . historyEpisode . SonarrEpisodeNumber ;
}
2024-07-13 12:08:58 +00:00
2024-06-21 01:49:44 +00:00
if ( ! string . IsNullOrEmpty ( historyEpisode . historyEpisode . SonarrSeasonNumber ) ) {
selected . Season = historyEpisode . historyEpisode . SonarrSeasonNumber ;
}
2024-06-19 00:16:02 +00:00
}
2024-06-11 21:58:44 +00:00
}
2024-07-13 12:08:58 +00:00
2024-06-21 01:49:44 +00:00
if ( ! string . IsNullOrEmpty ( historyEpisode . downloadDirPath ) ) {
selected . DownloadPath = historyEpisode . downloadDirPath ;
}
2024-06-11 21:58:44 +00:00
}
2024-07-13 12:08:58 +00:00
2024-07-16 23:52:46 +00:00
selected . DownloadSubs = CrunOptions . DlSubs ;
2024-06-21 01:49:44 +00:00
Queue . Add ( selected ) ;
2024-07-13 12:08:58 +00:00
2024-06-21 01:49:44 +00:00
if ( selected . Data . Count < dubLang . Count ) {
Console . WriteLine ( "Added Episode to Queue but couldn't find all selected dubs" ) ;
MessageBus . Current . SendMessage ( new ToastMessage ( $"Added episode to the queue but couldn't find all selected dubs" , ToastType . Warning , 2 ) ) ;
} else {
Console . WriteLine ( "Added Episode to Queue" ) ;
MessageBus . Current . SendMessage ( new ToastMessage ( $"Added episode to the queue" , ToastType . Information , 1 ) ) ;
}
} else {
Console . WriteLine ( "Episode couldn't be added to Queue" ) ;
MessageBus . Current . SendMessage ( new ToastMessage ( $"Couldn't add episode to the queue with current dub settings" , ToastType . Error , 2 ) ) ;
}
2024-05-04 15:35:32 +00:00
}
}
2024-06-27 20:52:12 +00:00
public async Task AddSeriesToQueue ( CrunchySeriesList list , CrunchyMultiDownload data ) {
2024-05-04 15:35:32 +00:00
var selected = CrSeries . ItemSelectMultiDub ( list . Data , data . DubLang , data . But , data . AllEpisodes , data . E ) ;
2024-05-24 22:46:11 +00:00
bool failed = false ;
2024-05-04 15:35:32 +00:00
foreach ( var crunchyEpMeta in selected . Values . ToList ( ) ) {
2024-05-24 22:46:11 +00:00
if ( crunchyEpMeta . Data ? . First ( ) . Playback ! = null ) {
2024-06-21 01:49:44 +00:00
if ( CrunOptions . History ) {
var historyEpisode = CrHistory . GetHistoryEpisodeWithDownloadDir ( crunchyEpMeta . ShowId , crunchyEpMeta . SeasonId , crunchyEpMeta . Data . First ( ) . MediaId ) ;
if ( CrunOptions . SonarrProperties is { SonarrEnabled : true , UseSonarrNumbering : true } ) {
if ( historyEpisode . historyEpisode ! = null ) {
if ( ! string . IsNullOrEmpty ( historyEpisode . historyEpisode . SonarrEpisodeNumber ) ) {
crunchyEpMeta . EpisodeNumber = historyEpisode . historyEpisode . SonarrEpisodeNumber ;
}
2024-06-19 00:16:02 +00:00
2024-06-21 01:49:44 +00:00
if ( ! string . IsNullOrEmpty ( historyEpisode . historyEpisode . SonarrSeasonNumber ) ) {
crunchyEpMeta . Season = historyEpisode . historyEpisode . SonarrSeasonNumber ;
}
2024-06-19 00:16:02 +00:00
}
2024-06-11 21:58:44 +00:00
}
2024-06-21 01:49:44 +00:00
if ( ! string . IsNullOrEmpty ( historyEpisode . downloadDirPath ) ) {
crunchyEpMeta . DownloadPath = historyEpisode . downloadDirPath ;
}
2024-06-11 21:58:44 +00:00
}
2024-07-13 12:08:58 +00:00
2024-06-27 20:52:12 +00:00
if ( CrunOptions . IncludeVideoDescription ) {
if ( crunchyEpMeta . Data is { Count : > 0 } ) {
var episode = await CrEpisode . ParseEpisodeById ( crunchyEpMeta . Data . First ( ) . MediaId , string . IsNullOrEmpty ( CrunOptions . DescriptionLang ) ? DefaultLocale : CrunOptions . DescriptionLang , true ) ;
crunchyEpMeta . Description = episode ? . Description ? ? crunchyEpMeta . Description ;
}
}
2024-06-11 21:58:44 +00:00
2024-07-16 23:52:46 +00:00
crunchyEpMeta . DownloadSubs = CrunOptions . DlSubs ;
2024-05-24 22:46:11 +00:00
Queue . Add ( crunchyEpMeta ) ;
} else {
failed = true ;
}
}
if ( failed ) {
MainWindow . Instance . ShowError ( "Not all episodes could be added – make sure that you are signed in with an account that has an active premium subscription?" ) ;
} else {
MessageBus . Current . SendMessage ( new ToastMessage ( $"Added episodes to the queue" , ToastType . Information , 1 ) ) ;
2024-05-04 15:35:32 +00:00
}
}
2024-06-24 15:40:20 +00:00
public async Task < bool > DownloadEpisode ( CrunchyEpMeta data , CrDownloadOptions options ) {
2024-05-04 15:35:32 +00:00
ActiveDownloads + + ;
data . DownloadProgress = new DownloadProgress ( ) {
IsDownloading = true ,
Error = false ,
Percent = 0 ,
Time = 0 ,
DownloadSpeed = 0 ,
Doing = "Starting"
} ;
Queue . Refresh ( ) ;
var res = await DownloadMediaList ( data , options ) ;
if ( res . Error ) {
ActiveDownloads - - ;
data . DownloadProgress = new DownloadProgress ( ) {
IsDownloading = false ,
Error = true ,
Percent = 100 ,
Time = 0 ,
DownloadSpeed = 0 ,
2024-06-06 01:08:13 +00:00
Doing = "Download Error" + ( ! string . IsNullOrEmpty ( res . ErrorText ) ? " - " + res . ErrorText : "" ) ,
2024-05-04 15:35:32 +00:00
} ;
Queue . Refresh ( ) ;
return false ;
}
if ( options . Skipmux = = false ) {
data . DownloadProgress = new DownloadProgress ( ) {
IsDownloading = true ,
Percent = 100 ,
Time = 0 ,
DownloadSpeed = 0 ,
Doing = "Muxing"
} ;
Queue . Refresh ( ) ;
2024-06-11 21:58:44 +00:00
2024-05-04 15:35:32 +00:00
await MuxStreams ( res . Data ,
new CrunchyMuxOptions {
FfmpegOptions = options . FfmpegOptions ,
2024-06-19 00:16:02 +00:00
SkipSubMux = options . SkipSubsMux ,
2024-05-04 15:35:32 +00:00
Output = res . FileName ,
Mp4 = options . Mp4 ,
2024-06-24 15:40:20 +00:00
VideoTitle = res . VideoTitle ,
2024-05-04 15:35:32 +00:00
Novids = options . Novids ,
NoCleanup = options . Nocleanup ,
2024-06-19 00:16:02 +00:00
DefaultAudio = Languages . FindLang ( options . DefaultAudio ) ,
DefaultSub = Languages . FindLang ( options . DefaultSub ) ,
2024-05-04 15:35:32 +00:00
MkvmergeOptions = options . MkvmergeOptions ,
ForceMuxer = options . Force ,
SyncTiming = options . SyncTiming ,
CcTag = options . CcTag ,
2024-06-24 15:40:20 +00:00
KeepAllVideos = true ,
MuxDescription = options . IncludeVideoDescription
2024-05-04 15:35:32 +00:00
} ,
res . FileName ) ;
data . DownloadProgress = new DownloadProgress ( ) {
IsDownloading = true ,
Done = true ,
Percent = 100 ,
Time = 0 ,
DownloadSpeed = 0 ,
Doing = "Done"
} ;
2024-06-24 20:29:13 +00:00
if ( CrunOptions . RemoveFinishedDownload ) {
Queue . Remove ( data ) ;
}
2024-05-04 15:35:32 +00:00
} else {
Console . WriteLine ( "Skipping mux" ) ;
}
ActiveDownloads - - ;
2024-06-26 22:04:50 +00:00
Queue . Refresh ( ) ;
2024-05-04 15:35:32 +00:00
if ( CrunOptions . History & & data . Data ! = null & & data . Data . Count > 0 ) {
CrHistory . SetAsDownloaded ( data . ShowId , data . SeasonId , data . Data . First ( ) . MediaId ) ;
}
return true ;
}
private async Task MuxStreams ( List < DownloadedMedia > data , CrunchyMuxOptions options , string filename ) {
var muxToMp3 = false ;
if ( options . Novids = = true | | data . FindAll ( a = > a . Type = = DownloadMediaType . Video ) . Count = = 0 ) {
if ( data . FindAll ( a = > a . Type = = DownloadMediaType . Audio ) . Count > 0 ) {
Console . WriteLine ( "Mux to MP3" ) ;
muxToMp3 = true ;
} else {
Console . WriteLine ( "Skip muxing since no videos are downloaded" ) ;
return ;
}
}
var subs = data . Where ( a = > a . Type = = DownloadMediaType . Subtitle ) . ToList ( ) ;
var subsList = new List < SubtitleFonts > ( ) ;
foreach ( var downloadedMedia in subs ) {
var subt = new SubtitleFonts ( ) ;
subt . Language = downloadedMedia . Language ;
subt . Fonts = downloadedMedia . Fonts ;
subsList . Add ( subt ) ;
}
2024-06-11 21:58:44 +00:00
2024-06-06 01:08:13 +00:00
if ( File . Exists ( $"{filename}.{(muxToMp3 ? " mp3 " : options.Mp4 ? " mp4 " : " mkv ")}" ) & & ! string . IsNullOrEmpty ( filename ) ) {
string newFilePath = filename ;
int counter = 1 ;
while ( File . Exists ( $"{newFilePath}.{(muxToMp3 ? " mp3 " : options.Mp4 ? " mp4 " : " mkv ")}" ) ) {
newFilePath = filename + $"({counter})" ;
counter + + ;
}
filename = newFilePath ;
}
2024-06-11 21:58:44 +00:00
2024-06-24 15:40:20 +00:00
bool muxDesc = false ;
if ( options . MuxDescription ) {
if ( File . Exists ( $"{filename}.xml" ) ) {
muxDesc = true ;
} else {
Console . Error . WriteLine ( "No xml description file found to mux description" ) ;
}
}
2024-06-26 22:04:50 +00:00
2024-05-04 15:35:32 +00:00
var merger = new Merger ( new MergerOptions {
2024-06-19 00:16:02 +00:00
OnlyVid = data . Where ( a = > a . Type = = DownloadMediaType . Video ) . Select ( a = > new MergerInput { Language = a . Lang , Path = a . Path ? ? string . Empty } ) . ToList ( ) ,
2024-05-04 15:35:32 +00:00
SkipSubMux = options . SkipSubMux ,
2024-06-19 00:16:02 +00:00
OnlyAudio = data . Where ( a = > a . Type = = DownloadMediaType . Audio ) . Select ( a = > new MergerInput { Language = a . Lang , Path = a . Path ? ? string . Empty } ) . ToList ( ) ,
2024-05-04 15:35:32 +00:00
Output = $"{filename}.{(muxToMp3 ? " mp3 " : options.Mp4 ? " mp4 " : " mkv ")}" ,
2024-07-16 23:52:46 +00:00
Subtitles = data . Where ( a = > a . Type = = DownloadMediaType . Subtitle ) . Select ( a = > new SubtitleInput
{ File = a . Path ? ? string . Empty , Language = a . Language , ClosedCaption = a . Cc , Signs = a . Signs , RelatedVideoDownloadMedia = a . RelatedVideoDownloadMedia } ) . ToList ( ) ,
2024-05-04 15:35:32 +00:00
KeepAllVideos = options . KeepAllVideos ,
Fonts = FontsManager . Instance . MakeFontsList ( CfgManager . PathFONTS_DIR , subsList ) , // Assuming MakeFontsList is properly defined
Chapters = data . Where ( a = > a . Type = = DownloadMediaType . Chapters ) . Select ( a = > new MergerInput { Language = a . Lang , Path = a . Path ? ? string . Empty } ) . ToList ( ) ,
VideoTitle = options . VideoTitle ,
Options = new MuxOptions ( ) {
ffmpeg = options . FfmpegOptions ,
mkvmerge = options . MkvmergeOptions
} ,
Defaults = new Defaults ( ) {
Audio = options . DefaultAudio ,
Sub = options . DefaultSub
} ,
CcTag = options . CcTag ,
2024-06-24 15:40:20 +00:00
mp3 = muxToMp3 ,
2024-07-16 23:52:46 +00:00
Description = muxDesc ? data . Where ( a = > a . Type = = DownloadMediaType . Description ) . Select ( a = > new MergerInput { Path = a . Path ? ? string . Empty } ) . ToList ( ) : [ ] ,
2024-05-04 15:35:32 +00:00
} ) ;
if ( ! File . Exists ( CfgManager . PathFFMPEG ) ) {
2024-06-19 00:16:02 +00:00
Console . Error . WriteLine ( "FFmpeg not found" ) ;
2024-05-04 15:35:32 +00:00
}
if ( ! File . Exists ( CfgManager . PathMKVMERGE ) ) {
2024-06-19 00:16:02 +00:00
Console . Error . WriteLine ( "MKVmerge not found" ) ;
2024-05-04 15:35:32 +00:00
}
bool isMuxed ;
2024-07-16 23:52:46 +00:00
if ( options . SyncTiming & & CrunOptions . DlVideoOnce ) {
var basePath = merger . options . OnlyVid . First ( ) . Path ;
var syncVideosList = data . Where ( a = > a . Type = = DownloadMediaType . SyncVideo ) . ToList ( ) ;
if ( ! string . IsNullOrEmpty ( basePath ) & & syncVideosList . Count > 0 ) {
foreach ( var syncVideo in syncVideosList ) {
if ( ! string . IsNullOrEmpty ( syncVideo . Path ) ) {
var delay = await merger . ProcessVideo ( basePath , syncVideo . Path ) ;
var audio = merger . options . OnlyAudio . FirstOrDefault ( audio = > audio . Language . CrLocale = = syncVideo . Lang . CrLocale ) ;
if ( audio ! = null ) {
audio . Delay = ( int ) delay * 1000 ;
}
var subtitles = merger . options . Subtitles . Where ( a = > a . RelatedVideoDownloadMedia = = syncVideo ) . ToList ( ) ;
if ( subtitles . Count > 0 ) {
foreach ( var subMergerInput in subtitles ) {
subMergerInput . Delay = ( int ) delay * 1000 ;
}
}
}
}
}
syncVideosList . ForEach ( syncVideo = > Helpers . DeleteFile ( syncVideo . Path ) ) ;
}
2024-05-04 15:35:32 +00:00
if ( ! options . Mp4 & & ! muxToMp3 ) {
await merger . Merge ( "mkvmerge" , CfgManager . PathMKVMERGE ) ;
isMuxed = true ;
} else {
await merger . Merge ( "ffmpeg" , CfgManager . PathFFMPEG ) ;
isMuxed = true ;
}
if ( isMuxed & & options . NoCleanup = = false ) {
merger . CleanUp ( ) ;
}
}
private async Task < DownloadResponse > DownloadMediaList ( CrunchyEpMeta data , CrDownloadOptions options ) {
if ( CmsToken ? . Cms = = null ) {
Console . WriteLine ( "Missing CMS Token" ) ;
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( "Missing CMS Token - are you signed in?" ) ;
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
2024-06-06 01:08:13 +00:00
FileName = "./unknown" ,
ErrorText = "Login problem"
2024-05-04 15:35:32 +00:00
} ;
}
if ( Profile . Username = = "???" ) {
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( "User Account not recognized - are you signed in?" ) ;
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
2024-06-06 01:08:13 +00:00
FileName = "./unknown" ,
ErrorText = "Login problem"
2024-05-04 15:35:32 +00:00
} ;
}
if ( ! File . Exists ( CfgManager . PathFFMPEG ) ) {
Console . Error . WriteLine ( "Missing ffmpeg" ) ;
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( "FFmpeg not found" ) ;
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
2024-06-06 01:08:13 +00:00
FileName = "./unknown" ,
ErrorText = "Missing ffmpeg"
2024-05-24 22:46:11 +00:00
} ;
}
2024-06-19 15:00:08 +00:00
2024-06-19 09:09:55 +00:00
if ( ! File . Exists ( CfgManager . PathMKVMERGE ) ) {
Console . Error . WriteLine ( "Missing Mkvmerge" ) ;
MainWindow . Instance . ShowError ( "Mkvmerge not found" ) ;
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
FileName = "./unknown" ,
ErrorText = "Missing Mkvmerge"
} ;
}
2024-05-24 22:46:11 +00:00
2024-06-19 01:50:10 +00:00
if ( ! _widevine . canDecrypt ) {
Console . Error . WriteLine ( "L3 key files missing" ) ;
MainWindow . Instance . ShowError ( "Can't find CDM files in widevine folder " ) ;
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
FileName = "./unknown" ,
ErrorText = "Missing L3 Key"
} ;
}
2024-06-19 15:00:08 +00:00
2024-06-19 09:09:55 +00:00
if ( ! File . Exists ( CfgManager . PathMP4Decrypt ) ) {
Console . Error . WriteLine ( "mp4decrypt not found" ) ;
MainWindow . Instance . ShowError ( "Can't find mp4decrypt in lib folder " ) ;
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
FileName = "./unknown" ,
ErrorText = "Missing mp4decrypt"
} ;
}
2024-05-04 15:35:32 +00:00
string mediaName = $"{data.SeasonTitle} - {data.EpisodeNumber} - {data.EpisodeTitle}" ;
string fileName = "" ;
var variables = new List < Variable > ( ) ;
List < DownloadedMedia > files = new List < DownloadedMedia > ( ) ;
if ( data . Data ! = null & & data . Data . All ( a = > a . Playback = = null ) ) {
2024-06-15 13:55:39 +00:00
Console . WriteLine ( "No Video Data found - Are you trying to download a premium episode without havíng a premium account?" ) ;
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( "No Video Data found - Are you trying to download a premium episode without havíng a premium account?" ) ;
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = files ,
Error = true ,
2024-06-21 01:49:44 +00:00
FileName = "./unknown" ,
2024-06-06 01:08:13 +00:00
ErrorText = "Video Data not found"
2024-05-04 15:35:32 +00:00
} ;
}
2024-06-11 21:58:44 +00:00
2024-05-04 15:35:32 +00:00
bool dlFailed = false ;
bool dlVideoOnce = false ;
2024-06-21 01:49:44 +00:00
string fileDir = CfgManager . PathVIDEOS_DIR ;
2024-05-04 15:35:32 +00:00
2024-06-11 21:58:44 +00:00
if ( data . Data ! = null ) {
2024-05-04 15:35:32 +00:00
foreach ( CrunchyEpMetaData epMeta in data . Data ) {
Console . WriteLine ( $"Requesting: [{epMeta.MediaId}] {mediaName}" ) ;
2024-06-21 01:49:44 +00:00
fileDir = ! string . IsNullOrEmpty ( data . DownloadPath ) ? data . DownloadPath : ! string . IsNullOrEmpty ( options . DownloadDirPath ) ? options . DownloadDirPath : CfgManager . PathVIDEOS_DIR ;
if ( ! Helpers . IsValidPath ( fileDir ) ) {
fileDir = CfgManager . PathVIDEOS_DIR ;
}
2024-05-04 15:35:32 +00:00
string currentMediaId = ( epMeta . MediaId . Contains ( ':' ) ? epMeta . MediaId . Split ( ':' ) [ 1 ] : epMeta . MediaId ) ;
await CrAuth . RefreshToken ( true ) ;
EpisodeVersion currentVersion = new EpisodeVersion ( ) ;
EpisodeVersion primaryVersion = new EpisodeVersion ( ) ;
bool isPrimary = epMeta . IsSubbed ;
//Get Media GUID
string mediaId = epMeta . MediaId ;
string mediaGuid = currentMediaId ;
if ( epMeta . Versions ! = null ) {
if ( epMeta . Lang ! = null ) {
currentVersion = epMeta . Versions . Find ( a = > a . AudioLocale = = epMeta . Lang ? . CrLocale ) ;
2024-07-16 23:52:46 +00:00
} else if ( data . SelectedDubs is { Count : 1 } ) {
LanguageItem lang = Array . Find ( Languages . languages , a = > a . CrLocale = = data . SelectedDubs [ 0 ] ) ;
2024-05-04 15:35:32 +00:00
currentVersion = epMeta . Versions . Find ( a = > a . AudioLocale = = lang . CrLocale ) ;
} else if ( epMeta . Versions . Count = = 1 ) {
currentVersion = epMeta . Versions [ 0 ] ;
}
if ( currentVersion . MediaGuid = = null ) {
Console . WriteLine ( "Selected language not found in versions." ) ;
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( "Selected language not found" ) ;
2024-05-04 15:35:32 +00:00
continue ;
}
isPrimary = currentVersion . Original ;
mediaId = currentVersion . MediaGuid ;
mediaGuid = currentVersion . Guid ;
if ( ! isPrimary ) {
primaryVersion = epMeta . Versions . Find ( a = > a . Original ) ;
} else {
primaryVersion = currentVersion ;
}
}
if ( mediaId . Contains ( ':' ) ) {
mediaId = mediaId . Split ( ':' ) [ 1 ] ;
}
if ( mediaGuid . Contains ( ':' ) ) {
mediaGuid = mediaGuid . Split ( ':' ) [ 1 ] ;
}
Console . WriteLine ( "MediaGuid: " + mediaId ) ;
#region Chapters
List < string > compiledChapters = new List < string > ( ) ;
if ( options . Chapters ) {
await ParseChapters ( primaryVersion . Guid , compiledChapters ) ;
}
#endregion
2024-06-06 01:08:13 +00:00
var fetchPlaybackData = await FetchPlaybackData ( mediaId , mediaGuid , epMeta ) ;
2024-05-04 15:35:32 +00:00
if ( ! fetchPlaybackData . IsOk ) {
2024-06-19 00:16:02 +00:00
if ( ! fetchPlaybackData . IsOk & & fetchPlaybackData . error ! = string . Empty ) {
var s = fetchPlaybackData . error ;
var error = StreamError . FromJson ( s ) ;
if ( error ! = null & & error . IsTooManyActiveStreamsError ( ) ) {
MainWindow . Instance . ShowError ( "Too many active streams that couldn't be stopped" ) ;
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
FileName = "./unknown" ,
ErrorText = "Too many active streams that couldn't be stopped"
} ;
}
}
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( "Couldn't get Playback Data" ) ;
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
2024-06-06 01:08:13 +00:00
FileName = "./unknown" ,
ErrorText = "Playback data not found"
2024-05-04 15:35:32 +00:00
} ;
}
var pbData = fetchPlaybackData . pbData ;
List < string > hsLangs = new List < string > ( ) ;
var pbStreams = pbData . Data ? [ 0 ] ;
var streams = new List < StreamDetailsPop > ( ) ;
variables . Add ( new Variable ( "title" , data . EpisodeTitle ? ? string . Empty , true ) ) ;
2024-07-16 23:52:46 +00:00
variables . Add ( new Variable ( "episode" ,
( double . TryParse ( data . EpisodeNumber , NumberStyles . Any , CultureInfo . InvariantCulture , out double episodeNum ) ? ( object ) Math . Round ( episodeNum , 1 ) : data . AbsolutEpisodeNumberE ) ? ? string . Empty , false ) ) ;
2024-05-04 15:35:32 +00:00
variables . Add ( new Variable ( "seriesTitle" , data . SeriesTitle ? ? string . Empty , true ) ) ;
variables . Add ( new Variable ( "showTitle" , data . SeasonTitle ? ? string . Empty , true ) ) ;
2024-05-26 00:27:31 +00:00
variables . Add ( new Variable ( "season" , data . Season ! = null ? Math . Round ( double . Parse ( data . Season , CultureInfo . InvariantCulture ) , 1 ) : 0 , false ) ) ;
2024-06-06 01:08:13 +00:00
2024-05-04 15:35:32 +00:00
if ( pbStreams ? . Keys ! = null ) {
foreach ( var key in pbStreams . Keys ) {
if ( ( key . Contains ( "hls" ) | | key . Contains ( "dash" ) ) & &
! ( key . Contains ( "hls" ) & & key . Contains ( "drm" ) ) & &
! ( ( ! _widevine . canDecrypt | | ! File . Exists ( CfgManager . PathMP4Decrypt ) ) & & key . Contains ( "drm" ) ) & &
! key . Contains ( "trailer" ) ) {
var pb = pbStreams [ key ] . Select ( v = > {
v . Value . HardsubLang = v . Value . HardsubLocale ! = null
? Languages . FixAndFindCrLc ( v . Value . HardsubLocale . GetEnumMemberValue ( ) ) . Locale
: null ;
if ( v . Value . HardsubLocale ! = null & & v . Value . HardsubLang ! = null & & ! hsLangs . Contains ( v . Value . HardsubLocale . GetEnumMemberValue ( ) ) ) {
hsLangs . Add ( v . Value . HardsubLang ) ;
}
return new StreamDetailsPop {
Url = v . Value . Url ,
HardsubLocale = v . Value . HardsubLocale ,
HardsubLang = v . Value . HardsubLang ,
AudioLang = v . Value . AudioLang ,
Type = v . Value . Type ,
Format = key ,
} ;
} ) . ToList ( ) ;
streams . AddRange ( pb ) ;
}
}
if ( streams . Count < 1 ) {
Console . WriteLine ( "No full streams found!" ) ;
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( "No streams found" ) ;
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
2024-06-06 01:08:13 +00:00
FileName = "./unknown" ,
ErrorText = "Streams not found"
2024-05-04 15:35:32 +00:00
} ;
}
var audDub = "" ;
if ( pbData . Meta ! = null ) {
audDub = Languages . FindLang ( Languages . FixLanguageTag ( ( pbData . Meta . AudioLocale ? ? Locale . DefaulT ) . GetEnumMemberValue ( ) ) ) . Code ;
}
hsLangs = Languages . SortTags ( hsLangs ) ;
streams = streams . Select ( s = > {
s . AudioLang = audDub ;
s . HardsubLang = string . IsNullOrEmpty ( s . HardsubLang ) ? "-" : s . HardsubLang ;
s . Type = $"{s.Format}/{s.AudioLang}/{s.HardsubLang}" ;
return s ;
} ) . ToList ( ) ;
streams . Sort ( ( a , b ) = > String . CompareOrdinal ( a . Type , b . Type ) ) ;
if ( options . Hslang ! = "none" ) {
if ( hsLangs . IndexOf ( options . Hslang ) > - 1 ) {
Console . WriteLine ( $"Selecting stream with {Languages.Locale2language(options.Hslang).Language} hardsubs" ) ;
streams = streams . Where ( ( s ) = > s . HardsubLang ! = "-" & & s . HardsubLang = = options . Hslang ) . ToList ( ) ;
} else {
Console . WriteLine ( $"Selected stream with {Languages.Locale2language(options.Hslang).Language} hardsubs not available" ) ;
if ( hsLangs . Count > 0 ) {
Console . WriteLine ( "Try hardsubs stream: " + string . Join ( ", " , hsLangs ) ) ;
}
dlFailed = true ;
}
} else {
streams = streams . Where ( ( s ) = > {
if ( s . HardsubLang ! = "-" ) {
return false ;
}
return true ;
} ) . ToList ( ) ;
if ( streams . Count < 1 ) {
Console . WriteLine ( "Raw streams not available!" ) ;
if ( hsLangs . Count > 0 ) {
Console . WriteLine ( "Try hardsubs stream: " + string . Join ( ", " , hsLangs ) ) ;
}
dlFailed = true ;
}
Console . WriteLine ( "Selecting raw stream" ) ;
}
StreamDetailsPop ? curStream = null ;
if ( ! dlFailed ) {
options . Kstream = options . Kstream > = 1 & & options . Kstream < = streams . Count
? options . Kstream
: 1 ;
for ( int i = 0 ; i < streams . Count ; i + + ) {
2024-06-15 13:55:39 +00:00
string isSelected = options . Kstream = = i + 1 ? "+" : " " ;
2024-05-04 15:35:32 +00:00
Console . WriteLine ( $"Full stream found! ({isSelected}{i + 1}: {streams[i].Type})" ) ;
}
Console . WriteLine ( "Downloading video..." ) ;
curStream = streams [ options . Kstream - 1 ] ;
Console . WriteLine ( $"Playlists URL: {curStream.Url} ({curStream.Type})" ) ;
}
string tsFile = "" ;
2024-07-16 23:52:46 +00:00
var videoDownloadMedia = new DownloadedMedia ( ) ;
2024-05-04 15:35:32 +00:00
if ( ! dlFailed & & curStream ! = null & & options is not { Novids : true , Noaudio : true } ) {
var streamPlaylistsReq = HttpClientReq . CreateRequestMessage ( curStream . Url ? ? string . Empty , HttpMethod . Get , true , true , null ) ;
var streamPlaylistsReqResponse = await HttpClientReq . Instance . SendHttpRequest ( streamPlaylistsReq ) ;
if ( ! streamPlaylistsReqResponse . IsOk ) {
dlFailed = true ;
2024-06-06 01:08:13 +00:00
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
2024-06-19 01:50:10 +00:00
Error = dlFailed ,
2024-06-06 01:08:13 +00:00
FileName = "./unknown" ,
ErrorText = "Playlist fetch problem"
} ;
2024-05-04 15:35:32 +00:00
}
2024-05-24 22:46:11 +00:00
2024-05-04 15:35:32 +00:00
if ( dlFailed ) {
Console . WriteLine ( $"CAN\'T FETCH VIDEO PLAYLISTS!" ) ;
} else {
if ( streamPlaylistsReqResponse . ResponseContent . Contains ( "MPD" ) ) {
var match = Regex . Match ( curStream . Url ? ? string . Empty , @"(.*\.urlset\/)" ) ;
var matchedUrl = match . Success ? match . Value : null ;
//Parse MPD Playlists
var crLocal = "" ;
if ( pbData . Meta ! = null ) {
crLocal = Languages . FixLanguageTag ( ( pbData . Meta . AudioLocale ? ? Locale . DefaulT ) . GetEnumMemberValue ( ) ) ;
}
MPDParsed streamPlaylists = MPDParser . Parse ( streamPlaylistsReqResponse . ResponseContent , Languages . FindLang ( crLocal ) , matchedUrl ) ;
List < string > streamServers = new List < string > ( streamPlaylists . Data . Keys ) ;
2024-05-05 16:03:07 +00:00
options . StreamServer = options . StreamServer > streamServers . Count ? 1 : options . StreamServer ;
2024-05-04 15:35:32 +00:00
if ( streamServers . Count = = 0 ) {
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
2024-06-06 01:08:13 +00:00
FileName = "./unknown" ,
ErrorText = "No stream servers found"
2024-05-04 15:35:32 +00:00
} ;
}
2024-05-05 16:03:07 +00:00
if ( options . StreamServer = = 0 ) {
options . StreamServer = 1 ;
2024-05-04 15:35:32 +00:00
}
2024-05-05 16:03:07 +00:00
string selectedServer = streamServers [ options . StreamServer - 1 ] ;
2024-05-04 15:35:32 +00:00
ServerData selectedList = streamPlaylists . Data [ selectedServer ] ;
var videos = selectedList . video . Select ( item = > new VideoItem {
segments = item . segments ,
pssh = item . pssh ,
quality = item . quality ,
bandwidth = item . bandwidth ,
resolutionText = $"{item.quality.width}x{item.quality.height} ({Math.Round(item.bandwidth / 1024.0)}KiB/s)"
} ) . ToList ( ) ;
var audios = selectedList . audio . Select ( item = > new AudioItem {
@default = item . @default ,
segments = item . segments ,
pssh = item . pssh ,
language = item . language ,
bandwidth = item . bandwidth ,
resolutionText = $"{Math.Round(item.bandwidth / 1000.0)}kB/s"
} ) . ToList ( ) ;
videos . Sort ( ( a , b ) = > a . quality . width . CompareTo ( b . quality . width ) ) ;
audios . Sort ( ( a , b ) = > a . bandwidth . CompareTo ( b . bandwidth ) ) ;
int chosenVideoQuality ;
2024-07-16 23:52:46 +00:00
if ( options . DlVideoOnce & & dlVideoOnce & & options . SyncTiming ) {
chosenVideoQuality = 1 ;
} else if ( options . QualityVideo = = "best" ) {
2024-05-04 15:35:32 +00:00
chosenVideoQuality = videos . Count ;
} else if ( options . QualityVideo = = "worst" ) {
chosenVideoQuality = 1 ;
} else {
2024-06-19 09:09:55 +00:00
var tempIndex = videos . FindIndex ( a = > a . quality . height + "" = = options . QualityVideo ) ;
2024-05-04 15:35:32 +00:00
if ( tempIndex < 0 ) {
chosenVideoQuality = videos . Count ;
} else {
tempIndex + + ;
chosenVideoQuality = tempIndex ;
}
}
if ( chosenVideoQuality > videos . Count ) {
Console . WriteLine ( $"The requested quality of {chosenVideoQuality} is greater than the maximum {videos.Count}.\n[WARN] Therefore, the maximum will be capped at {videos.Count}." ) ;
chosenVideoQuality = videos . Count ;
}
chosenVideoQuality - - ;
int chosenAudioQuality ;
if ( options . QualityAudio = = "best" ) {
chosenAudioQuality = audios . Count ;
} else if ( options . QualityAudio = = "worst" ) {
chosenAudioQuality = 1 ;
} else {
var tempIndex = audios . FindIndex ( a = > a . resolutionText = = options . QualityAudio ) ;
if ( tempIndex < 0 ) {
chosenAudioQuality = audios . Count ;
} else {
tempIndex + + ;
chosenAudioQuality = tempIndex ;
}
}
if ( chosenAudioQuality > audios . Count ) {
chosenAudioQuality = audios . Count ;
}
chosenAudioQuality - - ;
VideoItem chosenVideoSegments = videos [ chosenVideoQuality ] ;
AudioItem chosenAudioSegments = audios [ chosenAudioQuality ] ;
Console . WriteLine ( "Servers available:" ) ;
foreach ( var server in streamServers ) {
Console . WriteLine ( $"\t{server}" ) ;
}
Console . WriteLine ( "Available Video Qualities:" ) ;
for ( int i = 0 ; i < videos . Count ; i + + ) {
Console . WriteLine ( $"\t[{i + 1}] {videos[i].resolutionText}" ) ;
}
Console . WriteLine ( "Available Audio Qualities:" ) ;
for ( int i = 0 ; i < audios . Count ; i + + ) {
Console . WriteLine ( $"\t[{i + 1}] {audios[i].resolutionText}" ) ;
}
variables . Add ( new Variable ( "height" , chosenVideoSegments . quality . height , false ) ) ;
variables . Add ( new Variable ( "width" , chosenVideoSegments . quality . width , false ) ) ;
LanguageItem ? lang = Languages . languages . FirstOrDefault ( a = > a . Code = = curStream . AudioLang ) ;
if ( lang = = null ) {
Console . Error . WriteLine ( $"Unable to find language for code {curStream.AudioLang}" ) ;
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( $"Unable to find language for code {curStream.AudioLang}" ) ;
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = new List < DownloadedMedia > ( ) ,
Error = true ,
2024-06-06 01:08:13 +00:00
FileName = "./unknown" ,
ErrorText = "Language not found"
2024-05-04 15:35:32 +00:00
} ;
}
2024-06-15 13:55:39 +00:00
Console . WriteLine ( $"Selected quality:" ) ;
Console . WriteLine ( $"\tVideo: {chosenVideoSegments.resolutionText}" ) ;
Console . WriteLine ( $"\tAudio: {chosenAudioSegments.resolutionText}" ) ;
Console . WriteLine ( $"\tServer: {selectedServer}" ) ;
2024-05-04 15:35:32 +00:00
Console . WriteLine ( "Stream URL:" + chosenVideoSegments . segments [ 0 ] . uri . Split ( new [ ] { ",.urlset" } , StringSplitOptions . None ) [ 0 ] ) ;
2024-06-21 01:49:44 +00:00
2024-05-04 15:35:32 +00:00
fileName = Path . Combine ( FileNameManager . ParseFileName ( options . FileName , variables , options . Numbers , options . Override ) . ToArray ( ) ) ;
string outFile = Path . Combine ( FileNameManager . ParseFileName ( options . FileName + "." + ( epMeta . Lang ? . Name ? ? lang . Value . Name ) , variables , options . Numbers , options . Override ) . ToArray ( ) ) ;
string tempFile = Path . Combine ( FileNameManager . ParseFileName ( $"temp-{(currentVersion.Guid != null ? currentVersion.Guid : currentMediaId)}" , variables , options . Numbers , options . Override )
. ToArray ( ) ) ;
2024-06-21 01:49:44 +00:00
string tempTsFile = Path . IsPathRooted ( tempFile ) ? tempFile : Path . Combine ( fileDir , tempFile ) ;
2024-05-04 15:35:32 +00:00
2024-07-16 23:52:46 +00:00
bool audioDownloaded = false , videoDownloaded = false , syncTimingDownload = false ;
2024-05-04 15:35:32 +00:00
2024-07-16 23:52:46 +00:00
if ( options . DlVideoOnce & & dlVideoOnce & & ! options . SyncTiming ) {
2024-05-04 15:35:32 +00:00
Console . WriteLine ( "Already downloaded video, skipping video download..." ) ;
2024-05-24 22:46:11 +00:00
} else if ( options . Novids ) {
2024-05-04 15:35:32 +00:00
Console . WriteLine ( "Skipping video download..." ) ;
} else {
2024-06-21 01:49:44 +00:00
var videoDownloadResult = await DownloadVideo ( chosenVideoSegments , options , outFile , tsFile , tempTsFile , data , fileDir ) ;
2024-05-04 15:35:32 +00:00
tsFile = videoDownloadResult . tsFile ;
if ( ! videoDownloadResult . Ok ) {
Console . Error . WriteLine ( $"DL Stats: {JsonConvert.SerializeObject(videoDownloadResult.Parts)}" ) ;
dlFailed = true ;
}
2024-07-16 23:52:46 +00:00
if ( options . DlVideoOnce & & dlVideoOnce & & options . SyncTiming ) {
syncTimingDownload = true ;
}
2024-05-04 15:35:32 +00:00
dlVideoOnce = true ;
videoDownloaded = true ;
}
if ( chosenAudioSegments . segments . Count > 0 & & ! options . Noaudio & & ! dlFailed ) {
2024-06-21 01:49:44 +00:00
var audioDownloadResult = await DownloadAudio ( chosenAudioSegments , options , outFile , tsFile , tempTsFile , data , fileDir ) ;
2024-05-04 15:35:32 +00:00
tsFile = audioDownloadResult . tsFile ;
if ( ! audioDownloadResult . Ok ) {
Console . Error . WriteLine ( $"DL Stats: {JsonConvert.SerializeObject(audioDownloadResult.Parts)}" ) ;
dlFailed = true ;
}
audioDownloaded = true ;
} else if ( options . Noaudio ) {
Console . WriteLine ( "Skipping audio download..." ) ;
}
if ( dlFailed ) {
return new DownloadResponse {
Data = files ,
Error = dlFailed ,
2024-06-21 01:49:44 +00:00
FileName = fileName . Length > 0 ? ( Path . IsPathRooted ( fileName ) ? fileName : Path . Combine ( fileDir , fileName ) ) : "./unknown" ,
2024-06-06 01:08:13 +00:00
ErrorText = ""
2024-05-04 15:35:32 +00:00
} ;
}
if ( ( chosenVideoSegments . pssh ! = null | | chosenAudioSegments . pssh ! = null ) & & ( videoDownloaded | | audioDownloaded ) ) {
data . DownloadProgress = new DownloadProgress ( ) {
IsDownloading = true ,
Percent = 100 ,
Time = 0 ,
DownloadSpeed = 0 ,
Doing = "Decrypting"
} ;
2024-06-19 10:37:06 +00:00
Queue . Refresh ( ) ;
2024-05-04 15:35:32 +00:00
var assetIdRegexMatch = Regex . Match ( chosenVideoSegments . segments [ 0 ] . uri , @"/assets/(?:p/)?([^_,]+)" ) ;
var assetId = assetIdRegexMatch . Success ? assetIdRegexMatch . Groups [ 1 ] . Value : null ;
var sessionId = Helpers . GenerateSessionId ( ) ;
2024-06-21 01:49:44 +00:00
2024-06-19 17:09:18 +00:00
Console . WriteLine ( "Decryption Needed, attempting to decrypt" ) ;
2024-05-04 15:35:32 +00:00
2024-06-19 00:16:02 +00:00
if ( ! _widevine . canDecrypt ) {
dlFailed = true ;
return new DownloadResponse {
Data = files ,
Error = dlFailed ,
2024-06-21 01:49:44 +00:00
FileName = fileName . Length > 0 ? ( Path . IsPathRooted ( fileName ) ? fileName : Path . Combine ( fileDir , fileName ) ) : "./unknown" ,
2024-06-19 00:16:02 +00:00
ErrorText = "Decryption Needed but couldn't find CDM files"
} ;
}
2024-05-04 15:35:32 +00:00
var reqBodyData = new {
accounting_id = "crunchyroll" ,
asset_id = assetId ,
session_id = sessionId ,
user_id = Token ? . account_id
} ;
var json = JsonConvert . SerializeObject ( reqBodyData ) ;
var reqBody = new StringContent ( json , Encoding . UTF8 , "application/json" ) ;
2024-05-29 15:01:21 +00:00
var decRequest = HttpClientReq . CreateRequestMessage ( $"{Api.DRM}" , HttpMethod . Post , false , false , null ) ;
2024-05-04 15:35:32 +00:00
decRequest . Content = reqBody ;
var decRequestResponse = await HttpClientReq . Instance . SendHttpRequest ( decRequest ) ;
if ( ! decRequestResponse . IsOk ) {
2024-06-19 10:37:06 +00:00
Console . Error . WriteLine ( "Request to DRM Authentication failed: " ) ;
2024-05-29 15:01:21 +00:00
MainWindow . Instance . ShowError ( "Request to DRM Authentication failed" ) ;
2024-06-19 10:37:06 +00:00
dlFailed = true ;
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = files ,
Error = dlFailed ,
2024-06-21 01:49:44 +00:00
FileName = fileName . Length > 0 ? ( Path . IsPathRooted ( fileName ) ? fileName : Path . Combine ( fileDir , fileName ) ) : "./unknown" ,
2024-06-06 01:08:13 +00:00
ErrorText = "DRM Authentication failed"
2024-05-04 15:35:32 +00:00
} ;
}
2024-06-21 01:49:44 +00:00
2024-05-04 15:35:32 +00:00
DrmAuthData authData = Helpers . Deserialize < DrmAuthData > ( decRequestResponse . ResponseContent , SettingsJsonSerializerSettings ) ? ? new DrmAuthData ( ) ;
2024-06-21 01:49:44 +00:00
2024-05-04 15:35:32 +00:00
Dictionary < string , string > authDataDict = new Dictionary < string , string >
{ { "dt-custom-data" , authData . CustomData ? ? string . Empty } , { "x-dt-auth-token" , authData . Token ? ? string . Empty } } ;
2024-06-21 01:49:44 +00:00
2024-05-04 15:35:32 +00:00
var encryptionKeys = await _widevine . getKeys ( chosenVideoSegments . pssh , "https://lic.drmtoday.com/license-proxy-widevine/cenc/" , authDataDict ) ;
if ( encryptionKeys . Count = = 0 ) {
2024-06-19 10:37:06 +00:00
Console . Error . WriteLine ( "Failed to get encryption keys" ) ;
dlFailed = true ;
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = files ,
Error = dlFailed ,
2024-06-21 01:49:44 +00:00
FileName = fileName . Length > 0 ? ( Path . IsPathRooted ( fileName ) ? fileName : Path . Combine ( fileDir , fileName ) ) : "./unknown" ,
2024-06-06 01:08:13 +00:00
ErrorText = "Couldn't get DRM encryption keys"
2024-05-04 15:35:32 +00:00
} ;
}
2024-06-21 01:49:44 +00:00
2024-06-19 15:00:08 +00:00
2024-05-04 15:35:32 +00:00
if ( Path . Exists ( CfgManager . PathMP4Decrypt ) ) {
var keyId = BitConverter . ToString ( encryptionKeys [ 0 ] . KeyID ) . Replace ( "-" , "" ) . ToLower ( ) ;
var key = BitConverter . ToString ( encryptionKeys [ 0 ] . Bytes ) . Replace ( "-" , "" ) . ToLower ( ) ;
var commandBase = $"--show-progress --key {keyId}:{key}" ;
2024-07-12 02:35:33 +00:00
var tempTsFileName = Path . GetFileName ( tempTsFile ) ;
var tempTsFileWorkDir = Path . GetDirectoryName ( tempTsFile ) ? ? CfgManager . PathVIDEOS_DIR ;
var commandVideo = commandBase + $" \" { tempTsFileName } . video . enc . m4s \ " \"{tempTsFileName}.video.m4s\"" ;
var commandAudio = commandBase + $" \" { tempTsFileName } . audio . enc . m4s \ " \"{tempTsFileName}.audio.m4s\"" ;
2024-05-04 15:35:32 +00:00
if ( videoDownloaded ) {
2024-06-19 17:09:18 +00:00
Console . WriteLine ( "Started decrypting video" ) ;
data . DownloadProgress = new DownloadProgress ( ) {
IsDownloading = true ,
Percent = 100 ,
Time = 0 ,
DownloadSpeed = 0 ,
Doing = "Decrypting video"
} ;
Queue . Refresh ( ) ;
2024-07-13 12:08:58 +00:00
var decryptVideo = await Helpers . ExecuteCommandAsyncWorkDir ( "mp4decrypt" , CfgManager . PathMP4Decrypt , commandVideo , tempTsFileWorkDir ) ;
2024-05-04 15:35:32 +00:00
if ( ! decryptVideo . IsOk ) {
Console . Error . WriteLine ( $"Decryption failed with exit code {decryptVideo.ErrorCode}" ) ;
2024-05-29 15:01:21 +00:00
MainWindow . Instance . ShowError ( $"Decryption failed with exit code {decryptVideo.ErrorCode}" ) ;
2024-05-04 15:35:32 +00:00
try {
File . Move ( $"{tempTsFile}.video.enc.m4s" , $"{tsFile}.video.enc.m4s" ) ;
} catch ( IOException ex ) {
Console . WriteLine ( $"An error occurred: {ex.Message}" ) ;
}
2024-07-13 12:08:58 +00:00
2024-07-12 02:35:33 +00:00
return new DownloadResponse {
Data = files ,
Error = dlFailed ,
FileName = fileName . Length > 0 ? ( Path . IsPathRooted ( fileName ) ? fileName : Path . Combine ( fileDir , fileName ) ) : "./unknown" ,
ErrorText = "Decryption failed"
} ;
}
2024-05-04 15:35:32 +00:00
2024-07-12 02:35:33 +00:00
Console . WriteLine ( "Decryption done for video" ) ;
if ( ! options . Nocleanup ) {
2024-06-06 01:08:13 +00:00
try {
2024-07-12 02:35:33 +00:00
if ( File . Exists ( $"{tempTsFile}.video.enc.m4s" ) ) {
File . Delete ( $"{tempTsFile}.video.enc.m4s" ) ;
2024-05-04 15:35:32 +00:00
}
2024-06-11 21:58:44 +00:00
2024-07-12 02:35:33 +00:00
if ( File . Exists ( $"{tempTsFile}.video.enc.m4s.resume" ) ) {
File . Delete ( $"{tempTsFile}.video.enc.m4s.resume" ) ;
}
} catch ( Exception ex ) {
Console . WriteLine ( $"Failed to delete file {tempTsFile}.video.enc.m4s. Error: {ex.Message}" ) ;
// Handle exceptions if you need to log them or throw
2024-05-04 15:35:32 +00:00
}
2024-07-12 02:35:33 +00:00
}
2024-06-06 01:08:13 +00:00
2024-07-12 02:35:33 +00:00
try {
if ( File . Exists ( $"{tsFile}.video.m4s" ) ) {
File . Delete ( $"{tsFile}.video.m4s" ) ;
}
File . Move ( $"{tempTsFile}.video.m4s" , $"{tsFile}.video.m4s" ) ;
} catch ( IOException ex ) {
Console . WriteLine ( $"An error occurred: {ex.Message}" ) ;
2024-05-04 15:35:32 +00:00
}
2024-07-12 02:35:33 +00:00
2024-07-16 23:52:46 +00:00
videoDownloadMedia = new DownloadedMedia {
Type = syncTimingDownload ? DownloadMediaType . SyncVideo : DownloadMediaType . Video ,
2024-07-12 02:35:33 +00:00
Path = $"{tsFile}.video.m4s" ,
Lang = lang . Value ,
IsPrimary = isPrimary
2024-07-16 23:52:46 +00:00
} ;
files . Add ( videoDownloadMedia ) ;
2024-06-19 15:00:08 +00:00
} else {
2024-06-19 17:09:18 +00:00
Console . WriteLine ( "No Video downloaded" ) ;
2024-05-04 15:35:32 +00:00
}
if ( audioDownloaded ) {
2024-06-19 17:09:18 +00:00
Console . WriteLine ( "Started decrypting audio" ) ;
data . DownloadProgress = new DownloadProgress ( ) {
IsDownloading = true ,
Percent = 100 ,
Time = 0 ,
DownloadSpeed = 0 ,
Doing = "Decrypting audio"
} ;
Queue . Refresh ( ) ;
2024-07-13 12:08:58 +00:00
var decryptAudio = await Helpers . ExecuteCommandAsyncWorkDir ( "mp4decrypt" , CfgManager . PathMP4Decrypt , commandAudio , tempTsFileWorkDir ) ;
2024-05-04 15:35:32 +00:00
if ( ! decryptAudio . IsOk ) {
Console . Error . WriteLine ( $"Decryption failed with exit code {decryptAudio.ErrorCode}" ) ;
try {
File . Move ( $"{tempTsFile}.audio.enc.m4s" , $"{tsFile}.audio.enc.m4s" ) ;
} catch ( IOException ex ) {
Console . WriteLine ( $"An error occurred: {ex.Message}" ) ;
}
2024-07-13 12:08:58 +00:00
2024-07-12 02:35:33 +00:00
return new DownloadResponse {
Data = files ,
Error = dlFailed ,
FileName = fileName . Length > 0 ? ( Path . IsPathRooted ( fileName ) ? fileName : Path . Combine ( fileDir , fileName ) ) : "./unknown" ,
ErrorText = "Decryption failed"
} ;
}
2024-05-04 15:35:32 +00:00
2024-07-12 02:35:33 +00:00
Console . WriteLine ( "Decryption done for audio" ) ;
if ( ! options . Nocleanup ) {
2024-06-06 01:08:13 +00:00
try {
2024-07-12 02:35:33 +00:00
if ( File . Exists ( $"{tempTsFile}.audio.enc.m4s" ) ) {
File . Delete ( $"{tempTsFile}.audio.enc.m4s" ) ;
2024-05-04 15:35:32 +00:00
}
2024-06-11 21:58:44 +00:00
2024-07-12 02:35:33 +00:00
if ( File . Exists ( $"{tempTsFile}.audio.enc.m4s.resume" ) ) {
File . Delete ( $"{tempTsFile}.audio.enc.m4s.resume" ) ;
}
} catch ( Exception ex ) {
Console . WriteLine ( $"Failed to delete file {tempTsFile}.audio.enc.m4s. Error: {ex.Message}" ) ;
// Handle exceptions if you need to log them or throw
}
}
try {
if ( File . Exists ( $"{tsFile}.audio.m4s" ) ) {
File . Delete ( $"{tsFile}.audio.m4s" ) ;
2024-05-04 15:35:32 +00:00
}
2024-06-06 01:08:13 +00:00
2024-07-12 02:35:33 +00:00
File . Move ( $"{tempTsFile}.audio.m4s" , $"{tsFile}.audio.m4s" ) ;
} catch ( IOException ex ) {
Console . WriteLine ( $"An error occurred: {ex.Message}" ) ;
2024-05-04 15:35:32 +00:00
}
2024-07-12 02:35:33 +00:00
files . Add ( new DownloadedMedia {
Type = DownloadMediaType . Audio ,
Path = $"{tsFile}.audio.m4s" ,
Lang = lang . Value ,
IsPrimary = isPrimary
} ) ;
2024-06-19 15:00:08 +00:00
} else {
2024-06-19 17:09:18 +00:00
Console . WriteLine ( "No Audio downloaded" ) ;
2024-05-04 15:35:32 +00:00
}
} else {
2024-06-19 15:00:08 +00:00
Console . Error . WriteLine ( "mp4decrypt not found, files need decryption. Decryption Keys: " ) ;
2024-05-24 22:46:11 +00:00
MainWindow . Instance . ShowError ( $"mp4decrypt not found, files need decryption" ) ;
2024-05-04 15:35:32 +00:00
}
} else {
if ( videoDownloaded ) {
2024-07-16 23:52:46 +00:00
videoDownloadMedia = new DownloadedMedia {
Type = syncTimingDownload ? DownloadMediaType . SyncVideo : DownloadMediaType . Video ,
2024-05-04 15:35:32 +00:00
Path = $"{tsFile}.video.m4s" ,
Lang = lang . Value ,
IsPrimary = isPrimary
2024-07-16 23:52:46 +00:00
} ;
files . Add ( videoDownloadMedia ) ;
2024-05-04 15:35:32 +00:00
}
if ( audioDownloaded ) {
files . Add ( new DownloadedMedia {
Type = DownloadMediaType . Audio ,
Path = $"{tsFile}.audio.m4s" ,
Lang = lang . Value ,
IsPrimary = isPrimary
} ) ;
}
}
} else if ( options . Novids ) {
fileName = Path . Combine ( FileNameManager . ParseFileName ( options . FileName , variables , options . Numbers , options . Override ) . ToArray ( ) ) ;
Console . WriteLine ( "Downloading skipped!" ) ;
}
}
} else if ( options . Novids & & options . Noaudio ) {
fileName = Path . Combine ( FileNameManager . ParseFileName ( options . FileName , variables , options . Numbers , options . Override ) . ToArray ( ) ) ;
}
if ( compiledChapters . Count > 0 ) {
try {
// Parsing and constructing the file names
fileName = Path . Combine ( FileNameManager . ParseFileName ( options . FileName , variables , options . Numbers , options . Override ) . ToArray ( ) ) ;
string outFile = Path . Combine ( FileNameManager . ParseFileName ( options . FileName + "." + ( epMeta . Lang ? . Name ) , variables , options . Numbers , options . Override ) . ToArray ( ) ) ;
if ( Path . IsPathRooted ( outFile ) ) {
tsFile = outFile ;
} else {
2024-06-21 01:49:44 +00:00
tsFile = Path . Combine ( fileDir , outFile ) ;
2024-05-04 15:35:32 +00:00
}
// Check if the path is absolute
bool isAbsolute = Path . IsPathRooted ( outFile ) ;
// Get all directory parts of the path except the last segment (assuming it's a file)
string [ ] directories = Path . GetDirectoryName ( outFile ) ? . Split ( Path . DirectorySeparatorChar ) ? ? Array . Empty < string > ( ) ;
// Initialize the cumulative path based on whether the original path is absolute or not
2024-06-21 01:49:44 +00:00
string cumulativePath = isAbsolute ? "" : fileDir ;
2024-05-04 15:35:32 +00:00
for ( int i = 0 ; i < directories . Length ; i + + ) {
// Build the path incrementally
cumulativePath = Path . Combine ( cumulativePath , directories [ i ] ) ;
// Check if the directory exists and create it if it does not
if ( ! Directory . Exists ( cumulativePath ) ) {
Directory . CreateDirectory ( cumulativePath ) ;
Console . WriteLine ( $"Created directory: {cumulativePath}" ) ;
}
}
// Finding language by code
var lang = Languages . languages . FirstOrDefault ( l = > l . Code = = curStream ? . AudioLang ) ;
if ( lang . Code = = "und" ) {
Console . Error . WriteLine ( $"Unable to find language for code {curStream?.AudioLang}" ) ;
}
File . WriteAllText ( $"{tsFile}.txt" , string . Join ( "\r\n" , compiledChapters ) ) ;
files . Add ( new DownloadedMedia { Path = $"{tsFile}.txt" , Lang = lang , Type = DownloadMediaType . Chapters } ) ;
} catch {
Console . Error . WriteLine ( "Failed to write chapter file" ) ;
}
}
2024-07-16 23:52:46 +00:00
if ( data . DownloadSubs . IndexOf ( "all" ) > - 1 ) {
data . DownloadSubs = new List < string > { "all" } ;
2024-05-04 15:35:32 +00:00
}
if ( options . Hslang ! = "none" ) {
Console . WriteLine ( "Subtitles downloading disabled for hardsubed streams." ) ;
options . SkipSubs = true ;
}
2024-07-16 23:52:46 +00:00
if ( ! options . SkipSubs & & data . DownloadSubs . IndexOf ( "none" ) = = - 1 ) {
await DownloadSubtitles ( options , pbData , audDub , fileName , files , fileDir , data , ( options . DlVideoOnce & & dlVideoOnce & & options . SyncTiming ) , videoDownloadMedia ) ;
2024-05-04 15:35:32 +00:00
} else {
Console . WriteLine ( "Subtitles downloading skipped!" ) ;
}
}
await Task . Delay ( options . Waittime ) ;
}
2024-06-11 21:58:44 +00:00
}
2024-05-04 15:35:32 +00:00
// variables.Add(new Variable("height", quality == 0 ? plQuality.Last().RESOLUTION.Height : plQuality[quality - 1].RESOLUTION.Height, false));
// variables.Add(new Variable("width", quality == 0 ? plQuality.Last().RESOLUTION.Width : plQuality[quality - 1].RESOLUTION.Width, false));
2024-06-24 15:40:20 +00:00
if ( options . IncludeVideoDescription ) {
string fullPath = ( Path . IsPathRooted ( fileName ) ? fileName : Path . Combine ( fileDir , fileName ) ) + ".xml" ;
if ( ! File . Exists ( fullPath ) ) {
using ( XmlWriter writer = XmlWriter . Create ( fullPath ) ) {
writer . WriteStartDocument ( ) ;
writer . WriteStartElement ( "Tags" ) ;
writer . WriteStartElement ( "Tag" ) ;
writer . WriteStartElement ( "Targets" ) ;
writer . WriteElementString ( "TargetTypeValue" , "50" ) ;
writer . WriteEndElement ( ) ; // End Targets
writer . WriteStartElement ( "Simple" ) ;
writer . WriteElementString ( "Name" , "DESCRIPTION" ) ;
writer . WriteElementString ( "String" , data . Description ) ;
writer . WriteEndElement ( ) ; // End Simple
writer . WriteEndElement ( ) ; // End Tag
writer . WriteEndElement ( ) ; // End Tags
writer . WriteEndDocument ( ) ;
}
2024-06-26 22:04:50 +00:00
files . Add ( new DownloadedMedia {
Type = DownloadMediaType . Description ,
P ath = fullPath ,
} ) ;
2024-06-24 15:40:20 +00:00
}
Console . WriteLine ( $"{fileName} has been created with the description." ) ;
}
2024-05-04 15:35:32 +00:00
return new DownloadResponse {
Data = files ,
Error = dlFailed ,
2024-06-21 01:49:44 +00:00
FileName = fileName . Length > 0 ? ( Path . IsPathRooted ( fileName ) ? fileName : Path . Combine ( fileDir , fileName ) ) : "./unknown" ,
2024-06-24 15:40:20 +00:00
ErrorText = "" ,
2024-06-24 20:29:13 +00:00
VideoTitle = FileNameManager . ParseFileName ( options . VideoTitle ? ? "" , variables , options . Numbers , options . Override ) . Last ( )
2024-05-04 15:35:32 +00:00
} ;
}
2024-07-16 23:52:46 +00:00
private static async Task DownloadSubtitles ( CrDownloadOptions options , PlaybackData pbData , string audDub , string fileName , List < DownloadedMedia > files , string fileDir , CrunchyEpMeta data , bool needsDelay ,
DownloadedMedia videoDownloadMedia ) {
2024-05-04 15:35:32 +00:00
if ( pbData . Meta ! = null & & pbData . Meta . Subtitles ! = null & & pbData . Meta . Subtitles . Count > 0 ) {
List < SubtitleInfo > subsData = pbData . Meta . Subtitles . Values . ToList ( ) ;
List < SubtitleInfo > capsData = pbData . Meta . ClosedCaptions ? . Values . ToList ( ) ? ? new List < SubtitleInfo > ( ) ;
var subsDataMapped = subsData . Select ( s = > {
var subLang = Languages . FixAndFindCrLc ( ( s . Locale ? ? Locale . DefaulT ) . GetEnumMemberValue ( ) ) ;
return new {
format = s . Format ,
url = s . Url ,
locale = subLang ,
language = subLang . Locale ,
isCC = false
} ;
} ) . ToList ( ) ;
var capsDataMapped = capsData . Select ( s = > {
var subLang = Languages . FixAndFindCrLc ( ( s . Locale ? ? Locale . DefaulT ) . GetEnumMemberValue ( ) ) ;
return new {
format = s . Format ,
url = s . Url ,
locale = subLang ,
language = subLang . Locale ,
isCC = true
} ;
} ) . ToList ( ) ;
subsDataMapped . AddRange ( capsDataMapped ) ;
var subsArr = Languages . SortSubtitles ( subsDataMapped , "language" ) ;
foreach ( var subsItem in subsArr ) {
var index = subsArr . IndexOf ( subsItem ) ;
var langItem = subsItem . locale ;
var sxData = new SxItem ( ) ;
sxData . Language = langItem ;
var isSigns = langItem . Code = = audDub & & ! subsItem . isCC ;
var isCc = subsItem . isCC ;
2024-06-24 15:40:20 +00:00
2024-07-16 23:52:46 +00:00
sxData . File = Languages . SubsFile ( fileName , index + "" , langItem , isCc , options . CcTag , isSigns , subsItem . format , ! ( data . DownloadSubs . Count = = 1 & & ! data . DownloadSubs . Contains ( "all" ) ) ) ;
2024-06-21 01:49:44 +00:00
sxData . Path = Path . Combine ( fileDir , sxData . File ) ;
2024-05-04 15:35:32 +00:00
2024-06-21 01:49:44 +00:00
Helpers . EnsureDirectoriesExist ( sxData . Path ) ;
2024-05-04 15:35:32 +00:00
// Check if any file matches the specified conditions
if ( files . Any ( a = > a . Type = = DownloadMediaType . Subtitle & &
( a . Language . CrLocale = = langItem . CrLocale | | a . Language . Locale = = langItem . Locale ) & &
a . Cc = = isCc & &
2024-06-24 15:40:20 +00:00
a . Signs = = isSigns ) | | ( ! options . IncludeSignsSubs & & isSigns ) ) {
2024-05-04 15:35:32 +00:00
continue ;
}
2024-07-16 23:52:46 +00:00
if ( data . DownloadSubs . Contains ( "all" ) | | data . DownloadSubs . Contains ( langItem . CrLocale ) ) {
2024-05-04 15:35:32 +00:00
var subsAssReq = HttpClientReq . CreateRequestMessage ( subsItem . url ? ? string . Empty , HttpMethod . Get , false , false , null ) ;
var subsAssReqResponse = await HttpClientReq . Instance . SendHttpRequest ( subsAssReq ) ;
if ( subsAssReqResponse . IsOk ) {
if ( subsItem . format = = "ass" ) {
subsAssReqResponse . ResponseContent = ' \ ufeff ' + subsAssReqResponse . ResponseContent ;
var sBodySplit = subsAssReqResponse . ResponseContent . Split ( new [ ] { "\r\n" } , StringSplitOptions . None ) . ToList ( ) ;
2024-06-24 15:40:20 +00:00
// Insert 'ScaledBorderAndShadow' after the second line
2024-06-19 10:37:06 +00:00
if ( sBodySplit . Count > 2 ) {
if ( options . SubsAddScaledBorder = = ScaledBorderAndShadowSelection . ScaledBorderAndShadowYes ) {
sBodySplit . Insert ( 2 , "ScaledBorderAndShadow: yes" ) ;
2024-06-19 15:00:08 +00:00
} else if ( options . SubsAddScaledBorder = = ScaledBorderAndShadowSelection . ScaledBorderAndShadowNo ) {
2024-06-19 10:37:06 +00:00
sBodySplit . Insert ( 2 , "ScaledBorderAndShadow: no" ) ;
}
}
2024-06-19 15:00:08 +00:00
2024-05-04 15:35:32 +00:00
// Rejoin the lines back into a single string
subsAssReqResponse . ResponseContent = string . Join ( "\r\n" , sBodySplit ) ;
// Extract the title from the second line and remove 'Title: ' prefix
if ( sBodySplit . Count > 1 ) {
sxData . Title = sBodySplit [ 1 ] . Replace ( "Title: " , "" ) ;
sxData . Title = $"{langItem.Language} / {sxData.Title}" ;
var keysList = FontsManager . ExtractFontsFromAss ( subsAssReqResponse . ResponseContent ) ;
sxData . Fonts = FontsManager . Instance . GetDictFromKeyList ( keysList ) ;
}
2024-06-24 15:40:20 +00:00
} else if ( subsItem . format = = "vtt" ) {
// TODO
2024-05-04 15:35:32 +00:00
}
File . WriteAllText ( sxData . Path , subsAssReqResponse . ResponseContent ) ;
Console . WriteLine ( $"Subtitle downloaded: ${sxData.File}" ) ;
files . Add ( new DownloadedMedia {
Type = DownloadMediaType . Subtitle ,
Cc = isCc ,
Signs = isSigns ,
Path = sxData . Path ,
File = sxData . File ,
Title = sxData . Title ,
Fonts = sxData . Fonts ,
Language = sxData . Language ,
2024-07-16 23:52:46 +00:00
Lang = sxData . Language ,
RelatedVideoDownloadMedia = videoDownloadMedia
2024-05-04 15:35:32 +00:00
} ) ;
} else {
Console . WriteLine ( $"Failed to download subtitle: ${sxData.File}" ) ;
}
}
}
} else {
Console . WriteLine ( "Can\'t find urls for subtitles!" ) ;
}
}
2024-06-21 01:49:44 +00:00
private async Task < ( bool Ok , PartsData Parts , string tsFile ) > DownloadVideo ( VideoItem chosenVideoSegments , CrDownloadOptions options , string outFile , string tsFile , string tempTsFile , CrunchyEpMeta data ,
string fileDir ) {
2024-05-04 15:35:32 +00:00
// Prepare for video download
int totalParts = chosenVideoSegments . segments . Count ;
int mathParts = ( int ) Math . Ceiling ( ( double ) totalParts / options . Partsize ) ;
string mathMsg = $"({mathParts}*{options.Partsize})" ;
Console . WriteLine ( $"Total parts in video stream: {totalParts} {mathMsg}" ) ;
if ( Path . IsPathRooted ( outFile ) ) {
tsFile = outFile ;
} else {
2024-06-21 01:49:44 +00:00
tsFile = Path . Combine ( fileDir , outFile ) ;
2024-05-04 15:35:32 +00:00
}
2024-06-21 19:35:51 +00:00
Helpers . EnsureDirectoriesExist ( tsFile ) ;
2024-05-04 15:35:32 +00:00
M3U8Json videoJson = new M3U8Json {
Segments = chosenVideoSegments . segments . Cast < dynamic > ( ) . ToList ( )
} ;
var videoDownloader = new HlsDownloader ( new HlsOptions {
Output = chosenVideoSegments . pssh ! = null ? $"{tempTsFile}.video.enc.m4s" : $"{tsFile}.video.m4s" ,
Timeout = options . Timeout ,
M3U8Json = videoJson ,
// BaseUrl = chunkPlaylist.BaseUrl,
Threads = options . Partsize ,
FsRetryTime = options . FsRetryTime * 1000 ,
Override = options . Force ,
} , data , true , false ) ;
var videoDownloadResult = await videoDownloader . Download ( ) ;
return ( videoDownloadResult . Ok , videoDownloadResult . Parts , tsFile ) ;
}
2024-06-21 01:49:44 +00:00
private async Task < ( bool Ok , PartsData Parts , string tsFile ) > DownloadAudio ( AudioItem chosenAudioSegments , CrDownloadOptions options , string outFile , string tsFile , string tempTsFile , CrunchyEpMeta data ,
string fileDir ) {
2024-05-04 15:35:32 +00:00
// Prepare for audio download
int totalParts = chosenAudioSegments . segments . Count ;
int mathParts = ( int ) Math . Ceiling ( ( double ) totalParts / options . Partsize ) ;
string mathMsg = $"({mathParts}*{options.Partsize})" ;
Console . WriteLine ( $"Total parts in audio stream: {totalParts} {mathMsg}" ) ;
if ( Path . IsPathRooted ( outFile ) ) {
tsFile = outFile ;
} else {
2024-06-21 01:49:44 +00:00
tsFile = Path . Combine ( fileDir , outFile ) ;
2024-05-04 15:35:32 +00:00
}
// Check if the path is absolute
bool isAbsolute = Path . IsPathRooted ( outFile ) ;
// Get all directory parts of the path except the last segment (assuming it's a file)
string [ ] directories = Path . GetDirectoryName ( outFile ) ? . Split ( Path . DirectorySeparatorChar ) ? ? Array . Empty < string > ( ) ;
// Initialize the cumulative path based on whether the original path is absolute or not
2024-06-21 01:49:44 +00:00
string cumulativePath = isAbsolute ? "" : fileDir ;
2024-05-04 15:35:32 +00:00
for ( int i = 0 ; i < directories . Length ; i + + ) {
// Build the path incrementally
cumulativePath = Path . Combine ( cumulativePath , directories [ i ] ) ;
// Check if the directory exists and create it if it does not
if ( ! Directory . Exists ( cumulativePath ) ) {
Directory . CreateDirectory ( cumulativePath ) ;
Console . WriteLine ( $"Created directory: {cumulativePath}" ) ;
}
}
M3U8Json audioJson = new M3U8Json {
Segments = chosenAudioSegments . segments . Cast < dynamic > ( ) . ToList ( )
} ;
var audioDownloader = new HlsDownloader ( new HlsOptions {
Output = chosenAudioSegments . pssh ! = null ? $"{tempTsFile}.audio.enc.m4s" : $"{tsFile}.audio.m4s" ,
Timeout = options . Timeout ,
M3U8Json = audioJson ,
// BaseUrl = chunkPlaylist.BaseUrl,
Threads = options . Partsize ,
FsRetryTime = options . FsRetryTime * 1000 ,
Override = options . Force ,
} , data , false , true ) ;
var audioDownloadResult = await audioDownloader . Download ( ) ;
return ( audioDownloadResult . Ok , audioDownloadResult . Parts , tsFile ) ;
}
2024-06-19 01:50:10 +00:00
private async Task < ( bool IsOk , PlaybackData pbData , string error ) > FetchPlaybackData ( string mediaId , string mediaGuidId , CrunchyEpMetaData epMeta ) {
PlaybackData temppbData = new PlaybackData { Total = 0 , Data = new List < Dictionary < string , Dictionary < string , StreamDetails > > > ( ) } ;
bool ok = true ;
2024-05-04 15:35:32 +00:00
2024-06-19 01:50:10 +00:00
HttpRequestMessage playbackRequest ;
( bool IsOk , string ResponseContent ) playbackRequestResponse ;
playbackRequest = HttpClientReq . CreateRequestMessage ( $"https://cr-play-service.prd.crunchyrollsvc.com/v1/{mediaGuidId}/{CrunOptions.StreamEndpoint}/play" , HttpMethod . Get , true , false , null ) ;
2024-05-24 22:46:11 +00:00
2024-06-19 01:50:10 +00:00
playbackRequestResponse = await HttpClientReq . Instance . SendHttpRequest ( playbackRequest ) ;
if ( ! playbackRequestResponse . IsOk & & playbackRequestResponse . ResponseContent ! = string . Empty ) {
var s = playbackRequestResponse . ResponseContent ;
2024-06-19 00:16:02 +00:00
var error = StreamError . FromJson ( s ) ;
if ( error ! = null & & error . IsTooManyActiveStreamsError ( ) ) {
foreach ( var errorActiveStream in error . ActiveStreams ) {
await HttpClientReq . DeAuthVideo ( errorActiveStream . ContentId , errorActiveStream . Token ) ;
}
2024-06-19 01:50:10 +00:00
playbackRequest = HttpClientReq . CreateRequestMessage ( $"https://cr-play-service.prd.crunchyrollsvc.com/v1/{mediaGuidId}/{CrunOptions.StreamEndpoint}/play" , HttpMethod . Get , true , false , null ) ;
playbackRequestResponse = await HttpClientReq . Instance . SendHttpRequest ( playbackRequest ) ;
2024-06-19 00:16:02 +00:00
}
}
2024-06-19 01:50:10 +00:00
if ( playbackRequestResponse . IsOk ) {
temppbData = new PlaybackData { Total = 0 , Data = new List < Dictionary < string , Dictionary < string , StreamDetails > > > ( ) } ;
temppbData . Data . Add ( new Dictionary < string , Dictionary < string , StreamDetails > > ( ) ) ;
CrunchyStreamData ? playStream = JsonConvert . DeserializeObject < CrunchyStreamData > ( playbackRequestResponse . ResponseContent , SettingsJsonSerializerSettings ) ;
2024-05-04 15:35:32 +00:00
CrunchyStreams derivedPlayCrunchyStreams = new CrunchyStreams ( ) ;
if ( playStream ! = null ) {
2024-06-19 01:50:10 +00:00
if ( playStream . Token ! = null ) await HttpClientReq . DeAuthVideo ( mediaGuidId , playStream . Token ) ;
2024-05-24 22:46:11 +00:00
2024-05-04 15:35:32 +00:00
if ( playStream . HardSubs ! = null )
foreach ( var hardsub in playStream . HardSubs ) {
var stream = hardsub . Value ;
derivedPlayCrunchyStreams [ hardsub . Key ] = new StreamDetails {
Url = stream . Url ,
2024-06-11 21:58:44 +00:00
HardsubLocale = stream . Hlang
2024-05-04 15:35:32 +00:00
} ;
}
derivedPlayCrunchyStreams [ "" ] = new StreamDetails {
Url = playStream . Url ,
HardsubLocale = Locale . DefaulT
} ;
2024-06-19 01:50:10 +00:00
if ( temppbData . Data ! = null ) {
temppbData . Data [ 0 ] [ "drm_adaptive_dash" ] = derivedPlayCrunchyStreams ;
temppbData . Total = 1 ;
}
2024-06-19 15:00:08 +00:00
2024-06-19 01:50:10 +00:00
temppbData . Meta = new PlaybackMeta ( ) { AudioLocale = playStream . AudioLocale , Versions = playStream . Versions , Bifs = new List < string > { playStream . Bifs } , MediaId = mediaId } ;
2024-06-24 15:40:20 +00:00
if ( playStream . Captions ! = null ) {
temppbData . Meta . Captions = playStream . Captions ;
}
2024-06-19 01:50:10 +00:00
temppbData . Meta . Subtitles = new Subtitles ( ) ;
foreach ( var playStreamSubtitle in playStream . Subtitles ) {
Subtitle sub = playStreamSubtitle . Value ;
temppbData . Meta . Subtitles . Add ( playStreamSubtitle . Key , new SubtitleInfo ( ) { Format = sub . Format , Locale = sub . Locale , Url = sub . Url } ) ;
2024-05-04 15:35:32 +00:00
}
}
} else {
2024-06-19 01:50:10 +00:00
Console . WriteLine ( "Request Stream URLs FAILED! Attempting fallback" ) ;
2024-06-06 01:08:13 +00:00
2024-06-19 01:50:10 +00:00
playbackRequest = HttpClientReq . CreateRequestMessage ( $"https://cr-play-service.prd.crunchyrollsvc.com/v1/{mediaGuidId}/web/firefox/play" , HttpMethod . Get , true , false , null ) ;
2024-05-04 15:35:32 +00:00
playbackRequestResponse = await HttpClientReq . Instance . SendHttpRequest ( playbackRequest ) ;
2024-06-19 00:16:02 +00:00
if ( ! playbackRequestResponse . IsOk & & playbackRequestResponse . ResponseContent ! = string . Empty ) {
var s = playbackRequestResponse . ResponseContent ;
var error = StreamError . FromJson ( s ) ;
if ( error ! = null & & error . IsTooManyActiveStreamsError ( ) ) {
foreach ( var errorActiveStream in error . ActiveStreams ) {
await HttpClientReq . DeAuthVideo ( errorActiveStream . ContentId , errorActiveStream . Token ) ;
2024-06-06 01:08:13 +00:00
}
2024-06-19 00:16:02 +00:00
2024-06-19 01:50:10 +00:00
playbackRequest = HttpClientReq . CreateRequestMessage ( $"https://cr-play-service.prd.crunchyrollsvc.com/v1/{mediaGuidId}/web/firefox/play" , HttpMethod . Get , true , false , null ) ;
2024-06-19 00:16:02 +00:00
playbackRequestResponse = await HttpClientReq . Instance . SendHttpRequest ( playbackRequest ) ;
2024-06-06 01:08:13 +00:00
}
2024-06-19 00:16:02 +00:00
}
2024-05-04 15:35:32 +00:00
2024-06-19 01:50:10 +00:00
if ( playbackRequestResponse . IsOk ) {
temppbData = new PlaybackData { Total = 0 , Data = new List < Dictionary < string , Dictionary < string , StreamDetails > > > ( ) } ;
temppbData . Data . Add ( new Dictionary < string , Dictionary < string , StreamDetails > > ( ) ) ;
CrunchyStreamData ? playStream = JsonConvert . DeserializeObject < CrunchyStreamData > ( playbackRequestResponse . ResponseContent , SettingsJsonSerializerSettings ) ;
CrunchyStreams derivedPlayCrunchyStreams = new CrunchyStreams ( ) ;
if ( playStream ! = null ) {
if ( playStream . Token ! = null ) await HttpClientReq . DeAuthVideo ( mediaGuidId , playStream . Token ) ;
if ( playStream . HardSubs ! = null )
foreach ( var hardsub in playStream . HardSubs ) {
var stream = hardsub . Value ;
derivedPlayCrunchyStreams [ hardsub . Key ] = new StreamDetails {
Url = stream . Url ,
HardsubLocale = stream . Hlang
} ;
2024-06-19 00:16:02 +00:00
}
2024-06-19 01:50:10 +00:00
derivedPlayCrunchyStreams [ "" ] = new StreamDetails {
Url = playStream . Url ,
HardsubLocale = Locale . DefaulT
} ;
2024-06-19 00:16:02 +00:00
2024-06-19 01:50:10 +00:00
if ( temppbData . Data ! = null ) {
temppbData . Data [ 0 ] [ "drm_adaptive_dash" ] = derivedPlayCrunchyStreams ;
temppbData . Total = 1 ;
}
2024-06-19 15:00:08 +00:00
2024-06-19 01:50:10 +00:00
temppbData . Meta = new PlaybackMeta ( ) { AudioLocale = playStream . AudioLocale , Versions = playStream . Versions , Bifs = new List < string > { playStream . Bifs } , MediaId = mediaId } ;
2024-06-24 15:40:20 +00:00
if ( playStream . Captions ! = null ) {
temppbData . Meta . Captions = playStream . Captions ;
}
2024-06-19 01:50:10 +00:00
temppbData . Meta . Subtitles = new Subtitles ( ) ;
foreach ( var playStreamSubtitle in playStream . Subtitles ) {
Subtitle sub = playStreamSubtitle . Value ;
temppbData . Meta . Subtitles . Add ( playStreamSubtitle . Key , new SubtitleInfo ( ) { Format = sub . Format , Locale = sub . Locale , Url = sub . Url } ) ;
2024-06-19 00:16:02 +00:00
}
2024-05-04 15:35:32 +00:00
}
2024-06-19 01:50:10 +00:00
} else {
Console . Error . WriteLine ( "'Fallback Request Stream URLs FAILED!'" ) ;
ok = playbackRequestResponse . IsOk ;
2024-05-04 15:35:32 +00:00
}
}
2024-06-19 01:50:10 +00:00
2024-06-19 00:16:02 +00:00
return ( IsOk : ok , pbData : temppbData , error : ok ? "" : playbackRequestResponse . ResponseContent ) ;
2024-05-04 15:35:32 +00:00
}
private async Task ParseChapters ( string currentMediaId , List < string > compiledChapters ) {
var showRequest = HttpClientReq . CreateRequestMessage ( $"https://static.crunchyroll.com/skip-events/production/{currentMediaId}.json" , HttpMethod . Get , true , true , null ) ;
var showRequestResponse = await HttpClientReq . Instance . SendHttpRequest ( showRequest ) ;
if ( showRequestResponse . IsOk ) {
JObject jObject = JObject . Parse ( showRequestResponse . ResponseContent ) ;
CrunchyChapters chapterData = new CrunchyChapters ( ) ;
chapterData . lastUpdate = jObject [ "lastUpdate" ] ? . ToObject < DateTime ? > ( ) ;
chapterData . mediaId = jObject [ "mediaId" ] ? . ToObject < string > ( ) ;
chapterData . Chapters = new List < CrunchyChapter > ( ) ;
foreach ( var property in jObject . Properties ( ) ) {
// Check if the property value is an object and the property is not one of the known non-dictionary properties
if ( property . Value . Type = = JTokenType . Object & & property . Name ! = "lastUpdate" & & property . Name ! = "mediaId" ) {
// Deserialize the property value into a CrunchyChapter and add it to the dictionary
CrunchyChapter chapter = property . Value . ToObject < CrunchyChapter > ( ) ;
chapterData . Chapters . Add ( chapter ) ;
}
}
if ( chapterData . Chapters . Count > 0 ) {
chapterData . Chapters . Sort ( ( a , b ) = > {
if ( a . start ! = null & & b . start ! = null )
return a . start . Value - b . start . Value ;
return 0 ;
} ) ;
if ( ! ( ( chapterData . Chapters . Any ( c = > c . type = = "intro" ) ) | | chapterData . Chapters . Any ( c = > c . type = = "recap" ) ) ) {
int chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}=00:00:00.00" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME=Episode" ) ;
}
foreach ( CrunchyChapter chapter in chapterData . Chapters ) {
if ( chapter . start = = null | | chapter . end = = null ) continue ;
DateTime epoch = new DateTime ( 1970 , 1 , 1 , 0 , 0 , 0 , DateTimeKind . Utc ) ;
DateTime startTime = epoch . AddSeconds ( chapter . start . Value ) ;
DateTime endTime = epoch . AddSeconds ( chapter . end . Value ) ;
string startFormatted = startTime . ToString ( "HH:mm:ss" ) + ".00" ;
string endFormatted = endTime . ToString ( "HH:mm:ss" ) + ".00" ;
int chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
if ( chapter . type = = "intro" ) {
if ( chapter . start > 0 ) {
compiledChapters . Add ( $"CHAPTER{chapterNumber}=00:00:00.00" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME=Prologue" ) ;
}
chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}={startFormatted}" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME=Opening" ) ;
chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}={endFormatted}" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME=Episode" ) ;
} else {
string formattedChapterType = char . ToUpper ( chapter . type [ 0 ] ) + chapter . type . Substring ( 1 ) ;
chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}={startFormatted}" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME={formattedChapterType} Start" ) ;
chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}={endFormatted}" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME={formattedChapterType} End" ) ;
}
}
}
} else {
Console . WriteLine ( "Chapter request failed, attempting old API " ) ;
showRequest = HttpClientReq . CreateRequestMessage ( $"https://static.crunchyroll.com/datalab-intro-v2/{currentMediaId}.json" , HttpMethod . Get , true , true , null ) ;
showRequestResponse = await HttpClientReq . Instance . SendHttpRequest ( showRequest ) ;
if ( showRequestResponse . IsOk ) {
CrunchyOldChapter chapterData = JsonConvert . DeserializeObject < CrunchyOldChapter > ( showRequestResponse . ResponseContent ) ;
DateTime epoch = new DateTime ( 1970 , 1 , 1 , 0 , 0 , 0 , DateTimeKind . Utc ) ;
DateTime startTime = epoch . AddSeconds ( chapterData . startTime ) ;
DateTime endTime = epoch . AddSeconds ( chapterData . endTime ) ;
string [ ] startTimeParts = startTime . ToString ( CultureInfo . CurrentCulture ) . Split ( '.' ) ;
string [ ] endTimeParts = endTime . ToString ( CultureInfo . CurrentCulture ) . Split ( '.' ) ;
string startMs = startTimeParts . Length > 1 ? startTimeParts [ 1 ] : "00" ;
string endMs = endTimeParts . Length > 1 ? endTimeParts [ 1 ] : "00" ;
string startFormatted = startTime . ToString ( "HH:mm:ss" ) + "." + startMs ;
string endFormatted = endTime . ToString ( "HH:mm:ss" ) + "." + endMs ;
int chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
if ( chapterData . startTime > 1 ) {
compiledChapters . Add ( $"CHAPTER{chapterNumber}=00:00:00.00" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME=Prologue" ) ;
}
chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}={startFormatted}" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME=Opening" ) ;
chapterNumber = ( compiledChapters . Count / 2 ) + 1 ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}={endFormatted}" ) ;
compiledChapters . Add ( $"CHAPTER{chapterNumber}NAME=Episode" ) ;
} else {
Console . WriteLine ( "Old Chapter API request failed" ) ;
}
}
}
}