mirror of
https://github.com/fergalmoran/podnoms.git
synced 2025-12-30 13:18:03 +00:00
15 lines
446 B
C#
15 lines
446 B
C#
using System.Threading.Tasks;
|
|
using NYoutubeDL;
|
|
using PodNoms.Api.Services.Jobs;
|
|
|
|
namespace PodNoms.Api.Services.Jobs {
|
|
public class UpdateYouTubeDlJob : IJob {
|
|
public async Task Execute() {
|
|
await Task.Run(() => {
|
|
var yt = new YoutubeDL();
|
|
yt.Options.GeneralOptions.Update = true;
|
|
yt.Download("https://www.youtube.com/watch?v=OJ2wOKDzKyI");
|
|
});
|
|
}
|
|
}
|
|
} |