我一直在尝试创建一种从python代码流式传输youtube url(最好是音频,尽管这没什么大不了)的方法。我尝试了很多事情,但似乎没有一个真正起作用。到目前为止,我已经能够使用youtube数据API搜索视频或播放列表,获取第一个视频或播放列表,并将其传递到pafy中以获取不同的流媒体网址。有谁知道一种通过python播放youtube音频/视频而无需先下载视频的方法吗?我认为使用子播放器的mplayer或vlc这样的cmd行工具可以为cmd行弹出打开cmd并传递url,但是我被卡住了。需要任何帮助。请!这是我的以下代码:
import argparse
import pafy
from googleapiclient.discovery import build
from googleapiclient.errors import HttpError
DEVELOPER_KEY = 'DEVELOPER KEY'
YOUTUBE_API_SERVICE_NAME = 'youtube'
YOUTUBE_API_VERSION = 'v3'
def pafy_video(video_id):
url = 'https://www.youtube.com/watch?v={0}'.format(video_id)
vid = pafy.new(url)
def pafy_playlist(playlist_id)
url = "https://www.youtube.com/playlist?list={0}".format(playlist_id)
playlist = pafy.get_playlist(url)
def youtube_search(options):
youtube = build(YOUTUBE_API_SERVICE_NAME, YOUTUBE_API_VERSION, developerKey=DEVELOPER_KEY)
search_response = youtube.search().list(
q='Hello world',
part='id,snippet',
maxResults=options.max_results
).execute()
videos = []
playlists = []
channels = []
for search_result in search_response.get('items', []):
if search_result['id']['kind'] == 'youtube#video':
videos.append('%s' % (search_result['id']['videoId']))
elif search_result['id']['kind'] == 'youtube#channel':
channels.append('%s' % (search_result['id']['channelId']))
elif search_result['id']['kind'] == 'youtube#playlist':
playlists.append('%s' % (search_result['id']['playlistId']))
if videos:
print('Videos:{0}'.format(videos))
pafy_video(videos[0])
elif playlists:
print('Playlists:{0}'.format(playlists))
pafy_video(playlists[0])
#https://www.youtube.com/watch?v=rOU4YiuaxAM
#url = 'https://www.youtube.com/watch?v={0}'.format(videos[0])
#print(url)
if __name__ == '__main__':
parser = argparse.ArgumentParser()
parser.add_argument('--q', help='Search term', default='Google')
parser.add_argument('--max-results', help='Max results', default=3)
args = parser.parse_args()
youtube_search(args)
Tldr;我想直接从python代码流式传输youtube视频(使用url或id),而无需先下载视频]
谢谢!
pafy
根据其documentation不会直接列出正在播放的媒体(至少我没有找到任何媒体)。
但是我们可以使用它来获取正确的URL,然后使用诸如vlc
的播放器直接播放而不下载。
您可以下载vlc from here
首先,我们使用youtube
从pafy
获得正确/最佳的URL
import pafy
import vlc
url = "https://www.youtube.com/watch?v=bMt47wvK6u0"
video = pafy.new(url)
best = video.getbest()
playurl = best.url
在这里playurl
是最好的URL。然后我们使用VLC播放它。
Instance = vlc.Instance()
player = Instance.media_player_new()
Media = Instance.media_new(playurl)
Media.get_mrl()
player.set_media(Media)
player.play()
这将打开一个没有控件的窗口(播放/暂停/停止等)。您可以在repr
窗口或python提示符下运行这些命令(取决于您的使用方式)您将需要使用vlc命令相应地构建一个,例如
>>> player.pause() #-- to pause video
>>> player.resume() #-- resume paused video.
>>> player.stop() #-- to stop/end video