Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Docs
提交
52985c81
D
Docs
项目概览
OpenHarmony
/
Docs
1 年多 前同步成功
通知
159
Star
292
Fork
28
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
Docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
52985c81
编写于
4月 18, 2022
作者:
O
openharmony_ci
提交者:
Gitee
4月 18, 2022
浏览文件
操作
浏览文件
下载
差异文件
!3319 docs示例中增加路径码流推送方法
Merge pull request !3319 from 马靖涛/20220418
上级
ef26c8b5
17216085
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
21 addition
and
10 deletion
+21
-10
zh-cn/application-dev/media/audio-playback.md
zh-cn/application-dev/media/audio-playback.md
+9
-4
zh-cn/application-dev/media/video-playback.md
zh-cn/application-dev/media/video-playback.md
+10
-5
zh-cn/application-dev/reference/apis/js-apis-media.md
zh-cn/application-dev/reference/apis/js-apis-media.md
+2
-1
未找到文件。
zh-cn/application-dev/media/audio-playback.md
浏览文件 @
52985c81
...
...
@@ -84,7 +84,8 @@ let audioPlayer = media.createAudioPlayer();
SetCallBack
(
audioPlayer
);
//设置事件回调
//2. 用户选择音频,设置uri
let
fdPath
=
'
fd://
'
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
await
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdPath
);
...
...
@@ -147,7 +148,8 @@ let audioPlayer = media.createAudioPlayer(); //创建一个音频播放实
SetCallBack
(
audioPlayer
);
//设置事件回调
/* 用户选择音频设置fd(本地播放) */
let
fdPath
=
'
fd://
'
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
await
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdPath
);
...
...
@@ -185,7 +187,8 @@ let audioPlayer = media.createAudioPlayer(); //创建一个音频播放实
SetCallBack
(
audioPlayer
);
//设置事件回调
/* 用户选择音频设置fd(本地播放) */
let
fdPath
=
'
fd://
'
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
await
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdPath
);
...
...
@@ -201,7 +204,8 @@ audioPlayer.reset();
/* 用户选择音频设置fd(本地播放) */
let
fdNextPath
=
'
fd://
'
let
nextPath
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
// path路径的码流可通过"hdc file send D:\xxx\02.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
nextPath
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/02.mp3
'
;
await
fileIO
.
open
(
nextPath
).
then
(
fdNumber
)
=>
{
fdNextPath
=
fdNextPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdNextPath
);
...
...
@@ -239,6 +243,7 @@ SetCallBack(audioPlayer); //设置事件回调
/* 用户选择音频设置fd(本地播放) */
let
fdPath
=
'
fd://
'
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
await
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
...
...
zh-cn/application-dev/media/video-playback.md
浏览文件 @
52985c81
...
...
@@ -95,7 +95,8 @@ await media.createVideoPlayer().then((video) => {
// 用户选择视频设置fd(本地播放)
let
fdPath
=
'
fd://
'
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp4
'
;
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp4
'
;
await
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdPath
);
...
...
@@ -237,7 +238,8 @@ SetCallBack(videoPlayer);
// 用户选择视频设置fd(本地播放)
let
fdPath
=
'
fd://
'
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp4
'
;
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp4
'
;
await
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdPath
);
...
...
@@ -323,7 +325,8 @@ SetCallBack(videoPlayer);
// 用户选择视频设置fd(本地播放)
let
fdPath
=
'
fd://
'
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp4
'
;
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp4
'
;
await
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdPath
);
...
...
@@ -358,7 +361,8 @@ await videoPlayer.reset().then(() => {
// 用户选择视频设置fd(本地播放)
let
fdNextPath
=
'
fd://
'
let
nextPath
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/02.mp4
'
;
// path路径的码流可通过"hdc file send D:\xxx\02.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
nextPath
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/02.mp4
'
;
await
fileIO
.
open
(
nextPath
).
then
(
fdNumber
)
=>
{
fdNextPath
=
fdNextPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdNextPath
);
...
...
@@ -444,7 +448,8 @@ SetCallBack(videoPlayer);
// 用户选择视频设置fd(本地播放)
let
fdPath
=
'
fd://
'
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp4
'
;
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp4
'
;
await
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdPath
);
...
...
zh-cn/application-dev/reference/apis/js-apis-media.md
浏览文件 @
52985c81
...
...
@@ -572,7 +572,8 @@ audioPlayer.on('error', (error) => { //设置'error'事件回调
// 用户选择视频设置fd(本地播放)
let
fdPath
=
'
fd://
'
let
path
=
'
data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
// path路径的码流可通过"hdc file send D:\xxx\01.mp3 /data/accounts/account_0/appdata" 命令,将其推送到设备上
let
path
=
'
/data/accounts/account_0/appdata/ohos.xxx.xxx.xxx/01.mp3
'
;
fileIO
.
open
(
path
).
then
(
fdNumber
)
=>
{
fdPath
=
fdPath
+
''
+
fdNumber
;
console
.
info
(
'
open fd sucess fd is
'
+
fdPath
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录