MrExcel Message Board


Go Back   MrExcel Message Board > The Lounge > Lounge v.2.0

Lounge v.2.0 A place to chat.

Reply
 
Thread Tools Display Modes
Old Jul 29th, 2007, 12:53 AM   #1
Andrew Fergus
MrExcel MVP
 
Andrew Fergus's Avatar
 
Join Date: Sep 2004
Location: New Zealand
Posts: 4,721
Default Wow

http://www.youtube.com/watch?v=1k08yxu57NA

What a talent.....
__________________
~ >*()))><(


I'd rather have a full bottle in front of me than a full frontal lobotomy.
Andrew Fergus is offline   Reply With Quote
Old Jul 29th, 2007, 03:51 PM   #2
erik.van.geit
MrExcel MVP
 
erik.van.geit's Avatar
 
Join Date: Mar 2004
Location: Belgium 3272 Testelt
Posts: 16,775
Default

Yes, surely.
I hope he will always stay "simple". That's his main beauty to my sense.
__________________
I love Jesus
calm down piano improvisation

email Erik

founder of DRAFT

my free Addins
Table-It download & info
Formula Translator 03
erik.van.geit is offline   Reply With Quote
Old Jul 31st, 2007, 06:23 PM   #3
joefrench
 
joefrench's Avatar
 
Join Date: Oct 2006
Location: Meadville, PA
Posts: 353
Default

That was awesome!!
__________________
Joe
-Office 2003 & 2007
-If you always do what you've always done,
you'll always get what you always got.
joefrench is offline   Reply With Quote
Old Aug 1st, 2007, 12:08 PM   #4
SydneyGeek
MrExcel MVP
 
SydneyGeek's Avatar
 
Join Date: Aug 2003
Location: Sydney, Australia
Posts: 9,000
Default

Blew me away. And it looks like he did a pretty good job with the judges too!
EDIT: He won the final.

Denis
__________________
"I've only ever had two good ideas" -- Albert Einstein
-------------------------------------------------------
My site contains a number of Excel and Access Resources
SydneyGeek is online now   Reply With Quote
Old Aug 1st, 2007, 09:03 PM   #5
iknowu99
 
iknowu99's Avatar
 
Join Date: Dec 2004
Location: PA
Posts: 860
Default

wow back

http://video.google.com/videoplay?do...42995641330414
__________________
Hence, we fail to reject the null hypothesis that there is no relationship
iknowu99 is offline   Reply With Quote
Old Aug 2nd, 2007, 06:58 AM   #6
Oorang
 
Oorang's Avatar
 
Join Date: Mar 2005
Posts: 2,055
Default

Andrew... That was the coolest thing I have ever seen.

iknowu99... That was just wrong.
__________________
  • Get better answers! Include your version of Office in your post.
Oorang is offline   Reply With Quote
Old Aug 2nd, 2007, 05:00 PM   #7
iknowu99
 
iknowu99's Avatar
 
Join Date: Dec 2004
Location: PA
Posts: 860
Default

Yea a lot of great talent out there!
__________________
Hence, we fail to reject the null hypothesis that there is no relationship
iknowu99 is offline   Reply With Quote
Old Aug 18th, 2007, 12:49 AM   #8
hawaiian harry
 
Join Date: Oct 2005
Posts: 1,542
Default

That was GREAT.

This little 6 year old girl is terrific too.
http://www.youtube.com/watch?v=En0A8...elated&search=
__________________
"A real friend is one who walks in when the rest of the world walks out. Don't walk in front of me, I may not follow. Don't walk behind me, I may not lead. Walk beside me and be my friend." - Charles Caleb Colton
hawaiian harry is offline   Reply With Quote
Old Aug 18th, 2007, 04:14 PM   #9
Von Pookie
MrExcel MVP, Administrator
 
Von Pookie's Avatar
 
Join Date: Feb 2002
Location: The act or process of locating.
Posts: 13,282
Default

Between the two, I would rather listen to that 'polka' than the opera dude.
Von Pookie is offline   Reply With Quote
Old Aug 18th, 2007, 04:26 PM   #10
Ivan F Moala
MrExcel MVP
 
Ivan F Moala's Avatar
 
Join Date: Feb 2002
Location: Auckland, New Zealand
Posts: 4,208
Default

Andrew, that was truely g8, WOW what talent.
It was so good I wanted to download it ... P.ssed me off that you can't.
Looked into my IE Tmp files, found it BUT was locked and removed ?? when the session was closed.

SO I got some tools together and found how to get the file.

So for any one wanting to Download off YouTube here is some code.
There are other ways BUT I'll leave that for my site.
Just change strYouTubeURL to the YouTube address of the Video eg

http://www.youtube.com/watch?v=En0A8KGMgq8

EDIT:

Code over here should work now
http://www.xcelfiles.com/YouTube.html

Disregard the code below........


Code:
Option Explicit

Private Declare Function DoFileDownload _
    Lib "shdocvw.dll" ( _
        ByVal lpszFile As String) _
As Long

Sub DownLoadYouTubeVideo()

    '///////////////////////////////////////////////////////////////////////////////////////
    '// Routine to download Video from YouTube
    '// Requires: This project needs a reference to "Microsoft Internet Controls" and
    '//           "Microsoft HTML Object Library"
    '// Inputs: Valid YouTube address of Viewing Video
    '//       : eg. Paul Potts, 'Britains Got Talent * Paul Potts WOWS with Nessun Dorma!'
    '//       : http://www.youtube.com/watch?v=exyJ2CSfrHo
    '//       : Must be in abov format..just copy from address Bar
    '// By Ivan F Moala
    '// http://www.xcelfiles.com
    '// 18th Aug 2007
    '///////////////////////////////////////////////////////////////////////////////////////

    Dim strVideoUrl As String
    Dim strCode As String
    Dim objIE As Object
    Dim PosLastID As Long, PosVideoID As Long
    '// "Microsoft HTML Object Library"
    Dim HtmlDoc As New HTMLDocument
    Dim strYouTubeURL As String
 
    Set objIE = New InternetExplorer
    
        '// Paul Potts - change here as required
    strYouTubeURL = "http://www.youtube.com/watch?v=exyJ2CSfrHo"
        '// 720 Dunk
    'strYouTubeURL = "http://www.youtube.com/watch?v=9Xpcgthwdp0"
    
    '// Goto YouTube Site specified
    With objIE
        .navigate strYouTubeURL
            '// Remove IF you want it visible, you may hear the audio
        '.Visible = True
            '// Wait for the page to load
        Do While .Busy Or .readyState <> READYSTATE_COMPLETE
            DoEvents
        Loop
    End With
    
    '// Set Document object
    Set HtmlDoc = objIE.Document
    
    '// Set new IE Document into variable
    Set HtmlDoc = objIE.Document
        
    '// Extract HTML code from page whch contains OBJECT id = movie_player
    strCode = HtmlDoc.Body.innerHTML
    '// Find position of LastID
    PosLastID = InStr(1, strCode, "&sk=")
    '// Find position of VideoID
    PosVideoID = InStr(1, strCode, "amp;video_id")
    '// Get FileID
    strVideoUrl = Mid(strCode, PosVideoID + 13, PosLastID - PosVideoID - 13)
   
    '// Replace amp; as the 1st PARAM does NOT have Ctrl char and apend to URL_GET_VIDEO
    strVideoUrl = "http://youtube.com/get_video?video_id=" & Replace(strVideoUrl, "amp;", "", 1)
    
    '// Prompt user to Name with FLV extension
    MsgBox "The File Download Dialog box will appear shortly." & vbCrLf & _
        "When it prompts you to download, ensure you" & vbCrLf & _
        "name the file with an .flv extension.", vbInformation, "Name file convention"
        
    Dim Ret As Long
    '// Try downloading via Windows Download dialog
    Ret = DoFileDownload(StrConv(strVideoUrl, vbUnicode))
    
    '// Close site properly
    objIE.Quit
    Set objIE = Nothing
    Set HtmlDoc = Nothing

End Sub
__________________
Kind Regards,
Ivan F Moala From the City of Sails
Ivan F Moala is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT +1. The time now is 04:19 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
All contents Copyright 1998-2009 by MrExcel Consulting.