After a considerable amount of more research, I found a solution. While not obtaining LINKS to the audio, I created a program that plays the YouTube video invisibly, and hence can play the 'AUDIO', which was my intention.
The program I wrote uses alot of the already available Python modules to achieve the goal.
I found this link, which explains how to embed Flash into a Python application, via wxPython (found here). It has a activexwrapper module, which I utilized to play the Flash.
Code:
import wx
if wx.Platform == '__WXMSW__':
from wx.lib.flashwin import FlashWindow
class MyPanel(wx.Panel):
def __init__(self, parent, id):
wx.Panel.__init__(self, parent, -1)
self.pdf = None
sizer = wx.BoxSizer(wx.VERTICAL)
btnSizer = wx.BoxSizer(wx.HORIZONTAL)
self.flash = FlashWindow(self, style=wx.SUNKEN_BORDER)
sizer.Add(self.flash, proportion=1, flag=wx.EXPAND)
#sizer.Hide(0)
self.SetSizer(sizer)
self.SetAutoLayout(True)
print "Importing Flash..."
self.flash.LoadMovie(0, raw_input('Copy link for flash: '))
#Used to load a flash file. You may also give a location of a specific file on disk.
print "Done."
app = wx.PySimpleApp()
# create window/frame, no parent, -1 is default ID, title, size
# change size as needed
frame = wx.Frame(None, -1, "Flash Stream", size = (500, 400))
# make instance of class, -1 is default ID
MyPanel(frame, -1)
# show frame
frame.Show(True)
#comment if you don't want to see the ui
print "Started"
# start event loop
app.MainLoop()
That plays the video. In my case, I did not want to have the GUI, so I deleted the 'frame.Show(True)' line. If you wish to test it, try a link like 'http://www.youtube.com/v/cP6lppXT-9U?version=3&hl=en_US', as I will explain later.
However, this does not allow for pausing, etc. Therefore, other methods must be used.
To start autoplay: add a '&autoplay=1' to the URL
Here is how you can pause:
You can generate the video length uring the youtube-dl module, and kill the thread when the user pauses it. However, you would store the time already played, and the next time, you would add a '&start=SECONDSPLAYED', which will effectively 'resume' the video. Details on this are found here.
Also, you MUST use the YouTube embed url, which is the only one that works. An example looks like 'http://www.youtube.com/v/cP6lppXT-9U?version=3&hl=en_US'
Pros
- Legal*
- Fast Flash Loading Time (0.01 seconds benchmark)
- Does not waste space
- Can skip to ending without downloading entire file
- Unlimited uses, due to not using the YouTube API
*According to YouTube's terms of service, section 4: General Use of the Service—Permissions and Restrictions, subsection 3.
You agree not to access Content through any technology or means other than the video playback pages of the Service itself, the Embeddable Player, or other explicitly authorized means YouTube may designate.
Due to that the program uses an alternate interface that mainly uses the Embeddable Player, and does not do anything outright illegal (like downloading the file [my first idea]).
Cons
- Due to the reliance on ActiveX, this application will NOT work on any operating system BUT Windows.
- From the people I know, few use Internet Explorer. Alas, this program requires the INTERNET EXPLORER Flash to be installed; not Mozzila Flash, Chrome Flash. It absolutely HAS to be IE. Otherwise, the application will load, but the video will not appear.
- wx takes a VERY long time to load (approx 10 seconds).
Dependencies
- For obvious reasons, wxPython must be used.
- Python comtypes (found here) must be installed. Otherwise, wxPython cannot communicate with ActiveX.
Helpful Functions
I also created some functions to speed up the process for anyone who is doing the same thing.
All are nice one-liner lambdas.
generate_link: returns the YouTube Embed URL, given a normal YouTube URL.
generate_link = lambda link: 'http://www.youtube.com/v/'+re.compile(r'watch\?v=(.*?)(?:&|$)').search(link).group(1)+'?version=3&hl=en_US'
start_from: Accepts the hour, minute, and seconds of where to start a video, and returns a link.
start_from = lambda hours, minutes, seconds, link: link + '&start=' + str((hours*60*60)+(minutes*60)+seconds)
autoplay: Probably the simplest, sets autoplay to true, and returns a link. It accepts a link.
autoplay = lambda link: link + '&autoplay=1'
video_length: Returns the length of the video. Useful, accepts YouTube link.
video_length = lambda video: re.compile(r'length_seconds=(.*?)\\', re.S).search(urllib2.urlopen(video).read()).group(1).strip()
This is meant as a workaround for the fact that licensed videos will return an error
status=fail&errorcode=150&reason=This+video+contains+content+from+WMG.+It+is+restricted+from+playback+on+certain+sites.%3Cbr%2F%3E%3Cu%3E%3Ca+href%3D%27http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DVALbSjayAgw%26feature%3Dplayer_embedded%27+target%3D%27_blank%27%3EWatch+on+YouTube%3C%2Fa%3E%3C%2Fu%3E
Therefore, I parsed the actual video page to get the length. A bit slower, but works without fail.
You might also want to use a useragent, so that you cannot be blocked. Here is a urlopen function that can be used:
import urllib2
urllib = urllib2.build_opener()
urllib.addheaders = [('User-Agent', 'Mozilla/5.0')]
user_agents = ['Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0)',
'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.23) Gecko/20090825 SeaMonkey/1.1.18',
'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)',
'Mozilla/5.0 (Windows NT 6.0) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.120 Safari/535.2',
'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/18.6.872.0 Safari/535.2',
'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/533.1 (KHTML, like Gecko) Maxthon/3.0.8.2 Safari/533.1',
'Opera/9.80 (Windows NT 6.1; U; es-ES) Presto/2.9.181 Version/12.00',
'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0.1) Gecko/20100101 Firefox/4.0.1 Camino/2.2.1',
'iTunes/9.0.3 (Macintosh; U; Intel Mac OS X 10_6_2; en-ca)',
'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_7; en-us) AppleWebKit/534.20.8 (KHTML, like Gecko) Version/5.1 Safari/534.20.8',
'Mozilla/5.0 (X11; Linux x86_64; rv:5.0) Gecko/20100101 Firefox/5.0 Iceweasel/5.0',
'Mozilla/5.0 (compatible; Konqueror/4.1; OpenBSD) KHTML/4.1.4 (like Gecko)',
'Mozilla/5.0 (compatible; Konqueror/4.4; Linux 2.6.32-22-generic; X11; en_US) KHTML/4.4.3 (like Gecko) Kubuntu']
def urlopen(url):
while True:
try:
handle = urllib.open(url)
except urllib2.HTTPError:
agent = user_agents.pop(0)
urllib.addheaders = [('User-Agent', agent)]
else:
break
return handle
Hope that helped!
P.S. IF and WHEN I find a soluion for other operating systems, I will edit this answer.