don't need -G flag and don't set useragents

This commit is contained in:
Jouni 2021-09-27 23:44:32 +03:00
parent 3cd13d8cba
commit 91ec0ef19d

View File

@ -10,8 +10,6 @@ local options = {
categories = [["sponsor","intro","outro","interaction","selfpromo"]] categories = [["sponsor","intro","outro","interaction","selfpromo"]]
} }
local ranges
function getranges() function getranges()
local res local res
local luacurl_available, cURL = pcall(require,'cURL') local luacurl_available, cURL = pcall(require,'cURL')
@ -30,8 +28,6 @@ function getranges()
"curl", "curl",
"-L", "-L",
"-s", "-s",
"-G",
"-A", "mpv_sponsorblock_minimal/0.0.0",
API -- use inoptimal method of calling external cURL command API -- use inoptimal method of calling external cURL command
} }
@ -46,7 +42,6 @@ function getranges()
local buf={} local buf={}
local c = cURL.easy_init() local c = cURL.easy_init()
c:setopt_followlocation(1) c:setopt_followlocation(1)
c:setopt_useragent"mpv_sponsorblock_minimal/0.0.0"
c:setopt_url(API) c:setopt_url(API)
c:setopt_writefunction(function(chunk) table.insert(buf,chunk); return true; end) c:setopt_writefunction(function(chunk) table.insert(buf,chunk); return true; end)
c:perform() c:perform()
@ -133,4 +128,3 @@ end
mp.register_event("file-loaded", file_loaded) mp.register_event("file-loaded", file_loaded)
mp.register_event("end-file", end_file) mp.register_event("end-file", end_file)