Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Visual Basic Programming › vb web browser help

vb web browser help

Posts 1–7 of 7 · Page 1 of 1
SW
swor15
vb web browser help
so i am making an advanced web browser in vb8 and need help figuring out a code to save youtube videos to a file destination. if possible i would like to know if it is possible to save flash videos too?
All i need is a yes or no.
thanks
#1 · 15y ago
mnpeepno2
mnpeepno2
what a biter, but it is possible...
my next web browser will have the ability to save to a file and it will be OPEN SOURCE
#2 · 15y ago
SW
swor15
is it possible for flash videos to be saved and converted?
#3 · 15y ago
Web-Designer
Web-Designer
I'm pretty sure youtube has special security set up so you can't save the video....you can save the page source....but you'd also have to have all the files or full url's for all the source links for it the run the video or even show correctly.

Lots of work, so I'm not even gonna try but I really don't think you can.

Just use the embed code if you want to put it up somewhere else.

Now you can convert video files, just google "Free Video Converter"


(This is just what I would think, maybe it is possible....)
#4 · edited 15y ago · 15y ago
Nickleo9
Nickleo9
use webclient or httprequest.
#5 · 15y ago
Hassan
Hassan
First, add this sub procedure:

Code:
Sub DownloadVideo(ByVal videoLink As String)
        Dim I as new System.net.webclient
        Dim x As String = I.DownloadString(videoLink)
        Dim first As String = "delete yt.preload.videoConnection"
        Dim second As String = "img = null"
        Dim f1 As Integer = x.IndexOf(first) + first.Length + 1
        Dim f2 As Integer = x.IndexOf(second, f1) + 1
        Dim final As String = Mid(x, f1, f2 - f1)
        Dim q1 As Integer = final.IndexOf("};") + 3
        Dim q2 As Integer = final.IndexOf(";", q1) + 1
        Dim final2 As String = Mid(final, q1, q2 - q1)
        final2 = final2.Replace("img.src = ", "")
        final2 = final2.Replace("'", "")
        final2 = final2.Replace("http:\/\/", "http://")
        final2 = final2.Replace("\/", "/")
        final2 = final2.Replace("generate_204", "videoplayback")
        final2 = final2.Trim
        Dim ff As New SaveFileDialog
        ff.Filter = "FLV FILE (*.flv)|*.flv"
        If Not ff.ShowDialog = Windows.Forms.DialogResult.Cancel Then
            My.Computer.Network.DownloadFile(final2, ff.FileName, "", "", True, 100000, True)
        End If
    End Sub
Then call it as:

Code:
DownloadVideo("http://www.youtube.com/watch?v=-oCCnxBos10")
Done !!
#6 · 15y ago
SmartAlley
SmartAlley
Of course if possible. Firefox can do it, so is not impossible...
#7 · 15y ago
Posts 1–7 of 7 · Page 1 of 1

Post a Reply

Tags for this Thread

None