Posts

Showing posts with the label video

Kivy Video Player is not working on Raspberry 3B+

Image
Clash Royale CLAN TAG #URR8PPP Kivy Video Player is not working on Raspberry 3B+ I just installed Rasbian Stretch and Kivy on my RPI3+ . My application work properly just videos are not playing. Rasbian, kivy and gstreamer are up to date. My application and video were working on KivyPie 0.9b without any problem. RPI3+ KivyPie 0.9b Does kivy has any config for video playing on manual installation of Rasbian? kivy Output logs: [INFO ] [MTD ] rotation set to 0 [WARNING] [Image ] Unable to load image [ERROR ] [Image ] Error loading texture ./data/images/welcome.mp4 [ERROR ] [VideoGstplayer] GStreamer encountered a general supporting library error. [ERROR ] [VideoGstplayer] GStreamer encountered a general supporting library error. [ERROR ] [VideoGstplayer] Internal data stream error. By clicking "Post Your Answer", you acknowledge that you have read our updated terms of servi...

Pick Video And Pics from photo gallary please

Image
Clash Royale CLAN TAG #URR8PPP Pick Video And Pics from photo gallary please I'm desperately trying to add video picking option to my app. The app can take a picture and select pictures but it cannot select video file. I want the users to be able to select video from the photo library just as easily as they can select a photo. But most people I have asked seem to think it is not possible. But of course, it is not. I have used many app with this feature. Or this is not something I can do with Xcode? } let actionsheet = UIAlertController(title: nil, message: nil, preferredStyle: .alert) actionsheet.addAction(UIAlertAction(title: "Gallery", style: .default, handler: { (alert: UIAlertAction) in if UIImagePickerController.isSourceTypeAvailable(.photoLibrary){ let mypickerController = UIImagePickerController() mypickerController.delegate = self mypickerController.sourceType = .photoLibrary self.present(mypickerCo...

URGENT: Pick Video And Pics from photo gallary please

Image
Clash Royale CLAN TAG #URR8PPP URGENT: Pick Video And Pics from photo gallary please I'm desperately trying to add video picking option to my app. The app can take a picture and select pictures but it cannot select video file. I want the users to be able to select video from the photo library just as easily as they can select a photo. But most people I have asked seem to think it is not possible. But of course, it is not. I have used many app with this feature. Or this is not something I can do with Xcode? } let actionsheet = UIAlertController(title: nil, message: nil, preferredStyle: .alert) actionsheet.addAction(UIAlertAction(title: "Gallery", style: .default, handler: { (alert: UIAlertAction) in if UIImagePickerController.isSourceTypeAvailable(.photoLibrary){ let mypickerController = UIImagePickerController() mypickerController.delegate = self mypickerController.sourceType = .photoLibrary self.present(my...

Switching between Youku and YouTube based on whether you're in China

Image
Clash Royale CLAN TAG #URR8PPP Switching between Youku and YouTube based on whether you're in China I'm hosting a conference website where I want to embed a Youku video if you're in China and a YouTube video otherwise. The conference website is being served through a CDN inside the Great Firewall. I was given the code below to switch between internal and external versions of Youku. Unfortunately, ipinfo.io does not seem to be accessible inside the Great Firewall, so the code times out after 10 seconds. I've considered rewriting the page to use a Youku video by default, writing a small, non-blocking JavaScript function that tries to reach YouTube. If it can, replace the Youku with YouTube. If it can't, exit harmlessly. That way, the reachability of YouTube becomes the key test, not whether you're in China. Alternatively, I've thought of hosting the video on my site, so that it will be replicated via the CDN inside the Great Firewall. However, that would mean ...

How to split a video consultation in Dual Monitor using Tokbox API

Image
Clash Royale CLAN TAG #URR8PPP How to split a video consultation in Dual Monitor using Tokbox API I have created a web video consultation platform using tokbox API, but want to split a video consultation in dual monitor, so how can i do it? For example, if I have 4 users in current session then i will be able to drag a single user and open it into the different monitor. By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.