Guys, I'm trying to search for the m3u8 of lives on YouTube, however, I made a regex that only searches for links with .m3u8 at the end..
the regex finds something, however, it is completely incorrect...
the code snippet below, and what it finds...
Code>
Console>
what is going on?? xD
the regex finds something, however, it is completely incorrect...
the code snippet below, and what it finds...
Code>
B4X:
Dim j As HttpJob
j.Initialize("", Me)
j.Download("https://www.youtube.com/watch?v=floFotcxRIo")
Wait For (j) JobDone(j As HttpJob)
If j.Success Then
'Log(j.GetString)
Dim text, pattern As String
text = j.GetString
pattern = "https?.*?\.m3u8" 'one or more digits
Dim Matcher1 As Matcher
Matcher1 = Regex.Matcher2(pattern,Regex.CASE_INSENSITIVE, text)
If Matcher1.Find Then
Log("Found: " & Matcher1.Match)
End If
End If
j.Release
Console>
B4X:
*** Service (starter) Create ***
creating...
** Service (starter) Start **
** Activity (main) Create (first time) **
isrun = 0
Portrait
Call B4XPages.GetManager.LogEvents = True to enable logging B4XPages events.
** Activity (main) Resume **
*** Receiver (httputils2service) Receive (first time) ***
ID DO VIDEO = b_7Lp7-oN9s
Found: https:\/\/rr3---sn-n2xxqoxxucg-btoe.googlevideo.com\/generate_204');ytimg.preload('https:\/\/rr3---sn-n2xxqoxxucg-btoe.googlevideo.com\/generate_204?conn2');</script><link rel="canonical" href="https://www.youtube.com/watch?v=floFotcxRIo"><link rel="alternate" media="handheld" href="https://m.youtube.com/watch?v=floFotcxRIo"><link rel="alternate" media="only screen and (max-width: 640px)" href="https://m.youtube.com/watch?v=floFotcxRIo"><title>BARROSO CANTA "EVIDÊNCIAS" APÓS POSSE NA PRESIDÊNCIA DO STF - MORNING SHOW - 29/09/2023 - YouTube</title><meta name="title" content="BARROSO CANTA "EVIDÊNCIAS" APÓS POSSE NA PRESIDÊNCIA DO STF - MORNING SHOW - 29/09/2023"><meta name="description" content="Baixe o app Panflix: https://www.panflix.com.br/Baixe o AppNews Jovem Pan na Google Playhttps://bit.ly/2KRm8OJ Baixe o AppNews Jovem Pan na App Storehttps://..."><meta name="keywords" content="Felipeh Campos, Jovem Pan, Morning Show, Paulo Mathias, integramorningshow, Mano Ferreira, entretenimento, antonia fontenelle, morning show jovem pan, morning show jp, morning jp, morning jovem pan, Antônia Fontenelle, Guido Palomba, Entrevista Guido Palomba, Entrevista, Ovnis, Ets, Extraterrestres, Bolsonaro, Jair Bolsonaro, Lula, Luiz Inácio Lula da Silva"><link rel="shortlinkUrl" href="https://youtu.be/floFotcxRIo"><link rel="alternate" href="android-app://com.google.android.youtube/http/www.youtube.com/watch?v=floFotcxRIo"><link rel="alternate" href="ios-app://544007664/vnd.youtube/www.youtube.com/watch?v=floFotcxRIo"><link rel="alternate" type="application/json+oembed" href="https://www.youtube.com/oembed?format=json&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DfloFotcxRIo" title="BARROSO CANTA "EVIDÊNCIAS" APÓS POSSE NA PRESIDÊNCIA DO STF - MORNING SHOW - 29/09/2023"><link rel="alternate" type="text/xml+oembed" href="https://www.youtube.com/oembed?format=xml&url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DfloFotcxRIo" title="BARROSO CANTA "EVIDÊNCIAS" APÓS POSSE NA PRESIDÊNCIA DO STF - MORNING SHOW - 29/09/2023"><link rel="image_src" href="https://i.ytimg.com/vi/floFotcxRIo/hqdefault.jpg"><meta property="og:site_name" content="YouTube"><meta property="og:url" content="https://www.youtube.com/watch?v=floFotcxRIo"><meta property="og:title" content="BARROSO CANTA "EVIDÊNCIAS" APÓS POSSE NA PRESIDÊNCIA DO STF - MORNING SHOW - 29/09/2023"><meta property="og:image" content="https://i.ytimg.com/vi/floFotcxRIo/hqdefault.jpg"><meta property="og:image:width" content="480"><meta property="og:image:height" content="360"><meta property="og:description" content="Baixe o app Panflix: https://www.panflix.com.br/Baixe o AppNews Jovem Pan na Google Playhttps://bit.ly/2KRm8OJ Baixe o AppNews Jovem Pan na App Storehttps://..."><meta property="al:ios:app_store_id" content="544007664"><meta property="al:ios:app_name" content="YouTube"><meta property="al:ios:url" content="vnd.youtube://www.youtube.com/watch?v=floFotcxRIo&feature=applinks"><meta property="al:android:url" content="vnd.youtube://www.youtube.com/watch?v=floFotcxRIo&feature=applinks"><meta property="al:web:url" content="http://www.youtube.com/watch?v=floFotcxRIo&feature=applinks"><meta property="og:type" content="video.other"><meta property="og:video:url" content="https://www.youtube.com/embed/floFotcxRIo"><meta property="og:video:secure_url" content="https://www.youtube.com/embed/floFotcxRIo"><meta property="og:video:type" content="text/html"><meta property="og:video:width" content="1280"><meta property="og:video:height" content="720"><meta property="al:android:app_name" content="YouTube"><meta property="al:android:package" content="com.google.android.youtube"><meta property="og:video:tag" content="Felipeh Campos"><meta property="og:video:tag" content="Jovem Pan"><meta property="og:video:tag" content="Morning Show"><meta property="og:video:tag" content="Paulo Mathias"><meta property="og:video:tag" content="integramorningshow"><meta property="og:video:tag" content="Ma
Message longer than Log limit (4000). Message was truncated.
what is going on?? xD