Files
podnoms/server/Services/Jobs/UpdateYouTubeDlJob.cs
Fergal Moran 740824256d Go suck it
2018-03-15 20:04:25 +00:00

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");
});
}
}
}