现在的位置: 首页 > 综合 > 正文

Android系统中使用Console命令播放视频文件

2018年03月16日 ⁄ 综合 ⁄ 共 935字 ⁄ 字号 评论关闭

When streaming, if you want to play a streaming URL, it can be inconvenient if the browser cannot recognize
the URL as a media stream and downloads the content rather than using Gallery to play it.


To create this kind of media streaming, you need to write an apk to use VideoView to play the URL/media
stream from the console.

 

Here is the command of how to play a media file or network stream from console.

 

Gingerbread

am start -n com.cooliris.media/com.cooliris.media.MovieView -d "<URL>"

      The URL can be file position or network stream URL, such as:

  • you can play a local file by:

am start -n com.cooliris.media/com.cooliris.media.MovieView -d "/mnt/sdcard/test.mp4"

  • You can also play a http stream by:

am start -n com.cooliris.media/com.cooliris.media.MovieView -d "http://v.iask.com/v_play_ipad.php?vid=76710932"

  • Or play a rtsp stream by:

am start -n com.cooliris.media/com.cooliris.media.MovieView -d "rtsp://10.0.2.1:554/stream"

 

ICS

am start -n com.android.gallery3d/com.android.gallery3d.app.MovieActivity -d "<URL>"

       The URL has the same definition of Gingerbread.

抱歉!评论已关闭.