I use the sample code in this link
http://cocoawithlove.com/2009/06/revisiting-old-post-streaming-and.html
its work for all http link mp3 file but its not work for
#"http://translate.google.com/translate_tts?q=";
because it is html 5 page can i help me please for read this link
Related
I want to download video from youtube. Then the downloaded video should saved and user can also play it in offline mode and user can also trim or edit that downloaded video.
I have searched a lot on Google and i find some answers but they didn't satisfy my question.
This question tell downloading video from youtube may reject your application is this true?
The screen shot from apple. YouTube Terms & Condition are also not allowing to download videos. Read section 5-B.
I have also try to load some examples for video downloading from youtube but they all failed for loading video MyTube , YouTube , SCBTube , PSYouTubeExtractor
Some questions related to youtube download. and for video trimming or cutting i am following this code .
is this downloading is possible or not ?
Downloading is, in some cases, possible, but it's against the YouTube T&Cs...so yeah, don't do it. Furthermore, even if you did implement this not all videos on YouTube are actually available in the appropriate H.264 format (e.g, videos which require advertising or content protection are often not available).
I have uploaded audio from my app into google drive.Now I want to download the audio file and also play the audio while it is getting downloaded into application.
Thanks
Query File.list() with restriction on filetype
Find webContentLink from Files resource. You'll get HTTP link for file
There are many libraries to stream audio/video with HTTP in iOS
If you are new to Drive API, check iOS quickstart
hi everybody i try to develop a web application that can control Smart tv like this guide http://samsungdforum.com/Guide/tut00024/index.html i work fine but now i would like to upload video from computer then it can display on the smart tv like image shown on the tutorial have any one any idea or exemple or suggestion about modification of code that can i do that can help me i would like to modify code of convergence tutorial than can sens message or send video client application to smart tv application
Sending files is covered by the tutorial. You can find API reference for this here.
Sending video file is not exactly a wise thing, because there is a 3MB limit for a file that can be sent using Convergence API. This API is designed for sending messages between TV and external client rather than files. If you want to launch video playback, send video URL from web app to the TV and let the TV download the video by itself.
I am trying to develop an iPhone app which will be able to show live stream video on iPhone.The link is in format 'http://192.168.111.18:8002/testlink'.
I went through all the apple documentation and have downloaded mediastreamsegmenter and also it has been installed properly as I can see its details using 'man mediastreamsegmenter' command.I couldn't understand it after that.Please guide me regarding this.
You should use a link with suffix ".m3u8", which contains the TS segments of the live video stream. When you click on the "m3u8" link, then the video player will be launched to request for those TS segments, otherwise, the browser won't know it is a live video link.
https://developer.apple.com/library/mac/#documentation/NetworkingInternet/Conceptual/StreamingMediaGuide/Introduction/Introduction.html
I have a query regarding showing a video (which is stored on server) on iPhone.
I want show a video in an iPhone Application.
This is not live streaming.
So how the video can be shown?
I have read the Apple's documentation for HTTP streaming of video.
Do I need to call a Web Service?
Is there any tutorial for this?
I have seen the Apple Sample code for MPMoviePlayer.
While the locally stored video works fine, there is problem while showing the video stored on server.
Thanks in advance..
See the movie player sample code from the apple docs.