您的位置:首页 > 移动开发 > Android开发

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

2014-12-17 08:59 861 查看
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.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐