You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var result = await grabber.GrabAsync(new Uri($"https://www.youtube.com/embed/{fields?[0]}"));
var mediaFiles = result.Resources<GrabbedMedia>().ToArray();
var videoStream = mediaFiles.GetHighestQualityVideo();
var audioStream = mediaFiles.GetHighestQualityAudio();
if (audioStream == null)
throw new InvalidOperationException("No audio stream detected.");
if (videoStream == null)
throw new InvalidOperationException("No video stream detected.");
var audioPath = await DownloadMedia(audioStream, result);
var videoPath = await DownloadMedia(videoStream, result);
GenerateOutputFile(audioPath, videoPath, videoStream, path);
async Task<string> DownloadMedia(GrabbedMedia media, IGrabResult grabResult)
{
Console.WriteLine(\"Downloading {0}...\", media.Title ?? media.FormatTitle ?? media.Resolution);
using var response = await Client.GetAsync(media.ResourceUri);
response.EnsureSuccessStatusCode();
await using var downloadStream = await response.Content.ReadAsStreamAsync();
await using var resourceStream = await grabResult.WrapStreamAsync(downloadStream);
var path = Path.GetTempFileName();
await using var fileStream = new FileStream(path, FileMode.Create);
TempFiles.Add(path);
await resourceStream.CopyToAsync(fileStream);
return path;
}
Error message:
System.Net.Http.HttpRequestException: Response status code does not indicate success: 403 (Forbidden).
at System.Net.Http.HttpResponseMessage.EnsureSuccessStatusCode()
at Program.<>c__DisplayClass0_0.<<
$>g__DownloadMedia|0>d.MoveNext() in D:\Projects\TEST\TEST\TEST\Program.cs:line 87
--- End of stack trace from previous location ---
at Program.$(String[] args) in D:\Projects\TEST\TEST\TEST\Program.cs:line 51
The text was updated successfully, but these errors were encountered:
Hello,
Every video I tried gives me an 403 when I want to download the audio stream or video stream.
Example video:
https://www.youtube.com/embed/-FGrZolntqk
ResourceUri for audio stream
Error message:
The text was updated successfully, but these errors were encountered: