avgle m3u8 extractor

extract m3u8 after click close / use video title as filename

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Autore
x94fujo6rpg
Installazioni giornaliere
0
Installazioni totali
718
Valutazione
1 0 0
Versione
0.02
Creato il
01/03/2021
Aggiornato il
03/08/2021
Dimensione
4,17 KB
Licenza
Non disponibile
Applica a

Most of the updates will be on github

  • extract m3u8 after click close
  • when it done, click button to download
  • use video title as filename

options:

let discard_first_seg = false; //discard the first segment  
let url_only = false; //only the video url as .txt instead of .m3u8 (for youtube-dl/uget/wget...etc)

download use streamlink

streamlink --http-header Referer=https://avgle.com/ hls://file://"C:/example.m3u8" best -o example.ts

convert

ffmpeg -i example.ts -c copy example.mp4

streamlink loacal file path use / even in windows
also you might not want use *.ts (google: windows 10 ts file freeze)
cus windows werid behavior like scan for thumbnail can make system freeze/hanging
change it to like ._ts_ .tmp so windows does't recognize it, but ffmpeg still can handle it correctly

reference:
https://github.com/download-online-video/chrome-avgle-helper/issues/21
https://github.com/download-online-video/chrome-avgle-helper/issues/54