Jump to content
UBot Underground

[GET] Youtube Video Transcriber


Recommended Posts

Hi all,

 

Saw a recent WSO where they were selling software that would transcribe a youtube video. The trick is that you don't actually do the transcribing - youtube/Google does it for you.

 

So, with this bot you'll need to simply add the video URL and a save path. The first item in the results is the title of the video, the next is the text from the transcription.

 

Feel free to edit it how you see fit.

clear cookies
ui text box("Youtube Link", #ytlink)
ui save file("Save Text File (.txt or .csv)", #save)
ui button("Transcribe Video!") {
    clear table(&results)
    clear list(%videotitle)
    clear list(%text)
    if(#ytlink = "") {
        then {
            alert("Please add a Youtube link")
        }
        else {
        }
    }
    if(#save = "") {
        then {
            alert("Please enter Save path location")
        }
        else {
        }
    }
    navigate(#ytlink, "Wait")
    wait for element(<class="yt-uix-button-icon yt-uix-button-icon-action-panel-transcript">, "", "Appear")
    click(<class="yt-uix-button-icon yt-uix-button-icon-action-panel-transcript">, "Left Click", "No")
    wait for element(<id="watch-transcript-track-selector">, "", "Appear")
    add item to list(%videotitle, $scrape attribute(<id="eow-title">, "innertext"), "Delete", "Global")
    add list to list(%text, $scrape attribute(<outerhtml=w"<div class=\"caption-line-text\">*</div>">, "innertext"), "Delete", "Global")
    add list to table as column(&results, 0, 0, %Tvideotitle)
    add list to table as column(&results, 1, 0, %text)
    save to file(#save, &results)
}

  • Like 4
Link to post
Share on other sites

That's Awesome....totally forgot about that.

 

Thesgtluca

A transcription can be used as content ie an article then one can spin and have multiple articles.

 

 

Kev that is mint bro!!!!!  +1

Link to post
Share on other sites

Google does not index the transcription so that is the whole theory behind their software I believe - that you can get unique content pretty easily (and for free). It's a clever idea :)

Link to post
Share on other sites

Well I can help you. I provided the code already so most of it is already done. Pm me and I can finalise it for you.

Link to post
Share on other sites
  • 2 years later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...