Reputation: 1515
I want to embed videos in a widget in Kivy using youtube URLs. Is that possible ? The documentation gives example for VideoPlayer - http://kivy.org/docs/api-kivy.uix.videoplayer.html but its only for playing local files.
Upvotes: 3
Views: 4315
Reputation: 14814
Kivy can stream videos from the internet and play them in VideoPlayer
. However, YouTube does not provide a streaming URL. Remember that YouTube only gets paid when they show ads, which means they want you on their site and need you to use their video player.
I can think of two options:
Upvotes: 4