Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Roundabout suggestion - </p> <ol> <li>download the rtsp stream to a local filesink using VLC which has just been compiled on android. </li> <li>once the download is complete, simply play that file using the normal Intent field values for a local file and mimetype of mp4.</li> </ol> <p>snip below should play what was downloaded.</p> <pre><code>new Intent(Intent.ACTION_VIEW).setDataAndType(Uri.parse("file:///mnt/sdcard/myfile.mp4"), "video/mp4"); </code></pre> <p>VLC on android links: <a href="http://forum.xda-developers.com/showthread.php?t=1517415" rel="nofollow">http://forum.xda-developers.com/showthread.php?t=1517415</a> <a href="http://code.google.com/p/android-vlc-remote/source/browse/AndroidManifest.xml" rel="nofollow">http://code.google.com/p/android-vlc-remote/source/browse/AndroidManifest.xml</a></p> <p><strong>Get an rtsp link from any youtube vide - slightly involved process</strong></p> <p>You can stream just about any youtube video as RTSP if you do the following:</p> <ol> <li>Get the youtube video ID - like <em>videoID=kgfctMNeDtg</em> </li> <li>Get the youtube feed for the videoID</li> <li>Find the rtsp url for the appropriate <em>youtube format</em> . Formats 1,5 6 all have rtsp</li> <li>request the rtsp uri with an instance of HttpClient</li> </ol> <p>Details:</p> <p><a href="http://snipplr.com/view/63341/youtube-rtsp-cli-request--audio-track-only-p2/" rel="nofollow">http://snipplr.com/view/63341/youtube-rtsp-cli-request--audio-track-only-p2/</a></p> <p><a href="http://snipplr.com/view/57846/curl--rtsp-to-get-sdp-descriptor-for-media-stream/" rel="nofollow">http://snipplr.com/view/57846/curl--rtsp-to-get-sdp-descriptor-for-media-stream/</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload