如何通过adb shell am播放音视频文件

这篇博客介绍了如何通过adb shell am命令在Android设备上播放音频和视频文件。提供了播放mp3文件和视频文件的具体命令行操作,并提到了通过编译可执行文件在终端运行的另一种方式。
摘要由CSDN通过智能技术生成


如何通過am 啓動一個電話:


am start -a android.intent.action.CALL -d tel:10010

如何使用alsa_aplay 播放一個本地raw文件.

alsa_aplay -C  -Dhw:2,0 -r 8000 -c 1 -f S16 -t raw /d.raw


一、如果想通过adb shell播放一个mp3文件,可以通过以下的命令完成:

(1)通过am 播放音频文件

 mp3 file located at /storage/sdcard0/Music/hello.mp3

adb shell am start -a "android.intent.action.VIEW" -t "audio/mp3" -d "file:///storage/sdcard0/Music/hello.mp3"

(2)通过am 播放视频文件:

  

For video playback, you can try this:

adb shell am start -a android.intent.action.VIEW -d   "file:///mnt/sdcard/DCIM/Camera/test.3gp" -t "video/*" 

gives you a prompt of all capable players that can play this file.

adb shell am start -a android.intent.action.VIEW -d "file:///mnt/sdcard/DCIM/Camera/test.3gp" -t "video/*" -n "com.alensw.PicFolder/.PlayerActivity" 


二、也可以通过编译一个可执行文件来在终端运行,以下是一个例子:

    http://stackoverflow.com/questions/26298306/android-adb-shell-command-to-play-sound-from-the-command-line/26329605#26329605

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值