video-playback.md 18.7 KB
Newer Older
W
wusongqing 已提交
1 2 3 4
# Video Playback Development

## When to Use

W
wusongqing 已提交
5
You can use video playback APIs to convert video data into visible signals, play the signals using output devices, and manage playback tasks. This document describes development for the following video playback scenarios: full-process, normal playback, video switching, and loop playback.
W
wusongqing 已提交
6 7 8 9 10 11 12 13 14

**Figure 1** Video playback state transition

![en-us_image_video_state_machine](figures/en-us_image_video_state_machine.png)

**Figure 2** Layer 0 diagram of video playback

![en-us_image_video_player](figures/en-us_image_video_player.png)

W
wusongqing 已提交
15
*Note: Video playback requires hardware capabilities such as display, audio, and codec.*
W
wusongqing 已提交
16

W
wusongqing 已提交
17
1. A third-party application obtains a surface ID from the XComponent.
W
wusongqing 已提交
18 19 20
2. The third-party application transfers the surface ID to the VideoPlayer JS.
3. The media service flushes the frame data to the surface buffer.

W
wusongqing 已提交
21 22
## Compatibility

W
wusongqing 已提交
23
Use the mainstream playback formats and resolutions, rather than custom ones to avoid playback failures, frame freezing, and artifacts. The system is not affected by incompatibility issues. If such an issue occurs, you can exit stream playback mode.
W
wusongqing 已提交
24 25 26

The table below lists the mainstream playback formats and resolutions.

W
wusongqing 已提交
27
| Video Container Format|                     Description                     |               Resolution              |
W
wusongqing 已提交
28 29 30 31 32 33
| :----------: | :-----------------------------------------------: | :--------------------------------: |
|     mp4      | Video format: H.264/MPEG-2/MPEG-4/H.263; audio format: AAC/MP3| Mainstream resolutions, such as 1080p, 720p, 480p, and 270p|
|     mkv      | Video format: H.264/MPEG-2/MPEG-4/H.263; audio format: AAC/MP3| Mainstream resolutions, such as 1080p, 720p, 480p, and 270p|
|      ts      |   Video format: H.264/MPEG-2/MPEG-4; audio format: AAC/MP3   | Mainstream resolutions, such as 1080p, 720p, 480p, and 270p|
|     webm     |          Video format: VP8; audio format: VORBIS          | Mainstream resolutions, such as 1080p, 720p, 480p, and 270p|

W
wusongqing 已提交
34 35
## How to Develop

W
wusongqing 已提交
36
For details about the APIs, see [VideoPlayer in the Media API](../reference/apis/js-apis-media.md).
W
wusongqing 已提交
37 38 39 40 41

### Full-Process Scenario

The full video playback process includes creating an instance, setting the URL, setting the surface ID, preparing for video playback, playing video, pausing playback, obtaining track information, seeking to a playback position, setting the volume, setting the playback speed, stopping playback, resetting the playback configuration, and releasing resources.

W
wusongqing 已提交
42
For details about the **url** types supported by **VideoPlayer**, see the [url attribute](../reference/apis/js-apis-media.md#videoplayer_attributes).
W
wusongqing 已提交
43

W
wusongqing 已提交
44
For details about how to create an XComponent, see [XComponent](../reference/arkui-ts/ts-basic-components-xcomponent.md).
W
wusongqing 已提交
45

W
wusongqing 已提交
46
```js
W
wusongqing 已提交
47 48
import media from '@ohos.multimedia.media'
import fileIO from '@ohos.fileio'
W
wusongqing 已提交
49 50 51
export class VideoPlayerDemo {
  // Report an error in the case of a function invocation failure.
  failureCallback(error) {
W
wusongqing 已提交
52 53 54
    console.info(`error happened,error Name is ${error.name}`);
    console.info(`error happened,error Code is ${error.code}`);
    console.info(`error happened,error Message is ${error.message}`);
W
wusongqing 已提交
55
  }
W
wusongqing 已提交
56

W
wusongqing 已提交
57 58
  // Report an error in the case of a function invocation exception.
  catchCallback(error) {
W
wusongqing 已提交
59 60 61
    console.info(`catch error happened,error Name is ${error.name}`);
    console.info(`catch error happened,error Code is ${error.code}`);
    console.info(`catch error happened,error Message is ${error.message}`);
W
wusongqing 已提交
62
  }
W
wusongqing 已提交
63

W
wusongqing 已提交
64 65
  // Used to print the video track information.
  printfDescription(obj) {
W
wusongqing 已提交
66
    for (let item in obj) {
W
wusongqing 已提交
67 68 69
      let property = obj[item];
      console.info('key is ' + item);
      console.info('value is ' + property);
W
wusongqing 已提交
70
    }
W
wusongqing 已提交
71 72 73 74
  }

  async videoPlayerDemo() {
    let videoPlayer = undefined;
W
wusongqing 已提交
75
    let surfaceID = 'test' // The surfaceID parameter is used for screen display. Its value is obtained through the XComponent API. For details about the document link, see the method of creating the XComponent.
W
wusongqing 已提交
76 77 78 79 80
    let fdPath = 'fd://'
    // The stream in the path can be pushed to the device by running the "hdc file send D:\xxx\H264_AAC.mp4 /data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile" command.
    let path = '/data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile/H264_AAC.mp4';
    await fileIO.open(path).then((fdNumber) => {
      fdPath = fdPath + '' + fdNumber;
JoyboyCZ's avatar
JoyboyCZ 已提交
81
      console.info('open fd success fd is' + fdPath);
W
wusongqing 已提交
82 83 84 85 86 87 88 89
    }, (err) => {
      console.info('open fd failed err is' + err);
    }).catch((err) => {
      console.info('open fd failed err is' + err);
    });
    // Call createVideoPlayer to create a VideoPlayer instance.
    await media.createVideoPlayer().then((video) => {
      if (typeof (video) != 'undefined') {
W
wusongqing 已提交
90 91
        console.info('createVideoPlayer success!');
        videoPlayer = video;
W
wusongqing 已提交
92
      } else {
W
wusongqing 已提交
93
        console.info('createVideoPlayer fail!');
W
wusongqing 已提交
94 95
      }
    }, this.failureCallback).catch(this.catchCallback);
W
wusongqing 已提交
96
    // Set the playback source for the player.
W
wusongqing 已提交
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
    videoPlayer.url = fdPath;

    // Set the surface ID to display the video image.
    await videoPlayer.setDisplaySurface(surfaceID).then(() => {
      console.info('setDisplaySurface success');
    }, this.failureCallback).catch(this.catchCallback);

    // Call the prepare API to prepare for playback.
    await videoPlayer.prepare().then(() => {
      console.info('prepare success');
    }, this.failureCallback).catch(this.catchCallback);

    // Call the play API to start playback.
    await videoPlayer.play().then(() => {
      console.info('play success');
    }, this.failureCallback).catch(this.catchCallback);

    // Pause playback.
    await videoPlayer.pause().then(() => {
      console.info('pause success');
    }, this.failureCallback).catch(this.catchCallback);

W
wusongqing 已提交
119
    // Use a promise to obtain the video track information communication_dsoftbus.
W
wusongqing 已提交
120 121 122
    let arrayDescription;
    await videoPlayer.getTrackDescription().then((arrlist) => {
      if (typeof (arrlist) != 'undefined') {
W
wusongqing 已提交
123
        arrayDescription = arrlist;
W
wusongqing 已提交
124
      } else {
W
wusongqing 已提交
125
        console.log('video getTrackDescription fail');
W
wusongqing 已提交
126 127 128 129 130
      }
    }, this.failureCallback).catch(this.catchCallback);

    for (let i = 0; i < arrayDescription.length; i++) {
      this.printfDescription(arrayDescription[i]);
W
wusongqing 已提交
131 132
    }

W
wusongqing 已提交
133
    // Seek to the 50s position. For details about the input parameters, see the API document.
W
wusongqing 已提交
134 135 136 137 138
    let seekTime = 50000;
    await videoPlayer.seek(seekTime, media.SeekMode.SEEK_NEXT_SYNC).then((seekDoneTime) => {
      console.info('seek success');
    }, this.failureCallback).catch(this.catchCallback);

W
wusongqing 已提交
139
    // Set the volume. For details about the input parameters, see the API document.
W
wusongqing 已提交
140 141 142 143 144
    let volume = 0.5;
    await videoPlayer.setVolume(volume).then(() => {
      console.info('setVolume success');
    }, this.failureCallback).catch(this.catchCallback);

W
wusongqing 已提交
145
    // Set the playback speed. For details about the input parameters, see the API document.
W
wusongqing 已提交
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
    let speed = media.PlaybackSpeed.SPEED_FORWARD_2_00_X;
    await videoPlayer.setSpeed(speed).then(() => {
      console.info('setSpeed success');
    }, this.failureCallback).catch(this.catchCallback);

    // Stop playback.
    await videoPlayer.stop().then(() => {
      console.info('stop success');
    }, this.failureCallback).catch(this.catchCallback);

    // Reset the playback configuration.
    await videoPlayer.reset().then(() => {
      console.info('reset success');
    }, this.failureCallback).catch(this.catchCallback);

    // Release playback resources.
    await videoPlayer.release().then(() => {
      console.info('release success');
    }, this.failureCallback).catch(this.catchCallback);

    // Set the related instances to undefined.
    videoPlayer = undefined;
    surfaceID = undefined;
  }
W
wusongqing 已提交
170 171 172 173 174 175
}
```

### Normal Playback Scenario

```js
W
wusongqing 已提交
176 177
import media from '@ohos.multimedia.media'
import fileIO from '@ohos.fileio'
W
wusongqing 已提交
178 179 180
export class VideoPlayerDemo {
  // Report an error in the case of a function invocation failure.
  failureCallback(error) {
W
wusongqing 已提交
181 182 183
    console.info(`error happened,error Name is ${error.name}`);
    console.info(`error happened,error Code is ${error.code}`);
    console.info(`error happened,error Message is ${error.message}`);
W
wusongqing 已提交
184
  }
W
wusongqing 已提交
185

W
wusongqing 已提交
186 187
  // Report an error in the case of a function invocation exception.
  catchCallback(error) {
W
wusongqing 已提交
188 189 190
    console.info(`catch error happened,error Name is ${error.name}`);
    console.info(`catch error happened,error Code is ${error.code}`);
    console.info(`catch error happened,error Message is ${error.message}`);
W
wusongqing 已提交
191
  }
W
wusongqing 已提交
192

W
wusongqing 已提交
193 194 195 196 197 198 199 200 201 202 203
  // Used to print the video track information.
  printfDescription(obj) {
    for (let item in obj) {
      let property = obj[item];
      console.info('key is ' + item);
      console.info('value is ' + property);
    }
  }

  async videoPlayerDemo() {
    let videoPlayer = undefined;
W
wusongqing 已提交
204
    let surfaceID = 'test' // The surfaceID parameter is used for screen display. Its value is obtained through the XComponent API. For details about the document link, see the method of creating the XComponent.
W
wusongqing 已提交
205 206 207 208 209
    let fdPath = 'fd://'
    // The stream in the path can be pushed to the device by running the "hdc file send D:\xxx\H264_AAC.mp4 /data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile" command.
    let path = '/data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile/H264_AAC.mp4';
    await fileIO.open(path).then((fdNumber) => {
      fdPath = fdPath + '' + fdNumber;
JoyboyCZ's avatar
JoyboyCZ 已提交
210
      console.info('open fd success fd is' + fdPath);
W
wusongqing 已提交
211 212 213 214
    }, (err) => {
      console.info('open fd failed err is' + err);
    }).catch((err) => {
      console.info('open fd failed err is' + err);
W
wusongqing 已提交
215
    });
W
wusongqing 已提交
216 217 218
    // Call createVideoPlayer to create a VideoPlayer instance.
    await media.createVideoPlayer().then((video) => {
      if (typeof (video) != 'undefined') {
W
wusongqing 已提交
219 220
        console.info('createVideoPlayer success!');
        videoPlayer = video;
W
wusongqing 已提交
221
      } else {
W
wusongqing 已提交
222
        console.info('createVideoPlayer fail!');
W
wusongqing 已提交
223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
      }
    }, this.failureCallback).catch(this.catchCallback);
    // Set the playback source for the player.
    videoPlayer.url = fdPath;

    // Set the surface ID to display the video image.
    await videoPlayer.setDisplaySurface(surfaceID).then(() => {
      console.info('setDisplaySurface success');
    }, this.failureCallback).catch(this.catchCallback);

    // Call the prepare API to prepare for playback.
    await videoPlayer.prepare().then(() => {
      console.info('prepare success');
    }, this.failureCallback).catch(this.catchCallback);

    // Call the play API to start playback.
    await videoPlayer.play().then(() => {
      console.info('play success');
    }, this.failureCallback).catch(this.catchCallback);

    // Stop playback.
    await videoPlayer.stop().then(() => {
      console.info('stop success');
    }, this.failureCallback).catch(this.catchCallback);

    // Release playback resources.
    await videoPlayer.release().then(() => {
      console.info('release success');
    }, this.failureCallback).catch(this.catchCallback);

    // Set the related instances to undefined.
    videoPlayer = undefined;
    surfaceID = undefined;
  }
}
W
wusongqing 已提交
258 259 260 261 262
```

### Switching to the Next Video Clip

```js
W
wusongqing 已提交
263 264
import media from '@ohos.multimedia.media'
import fileIO from '@ohos.fileio'
W
wusongqing 已提交
265 266 267
export class VideoPlayerDemo {
  // Report an error in the case of a function invocation failure.
  failureCallback(error) {
W
wusongqing 已提交
268 269 270
    console.info(`error happened,error Name is ${error.name}`);
    console.info(`error happened,error Code is ${error.code}`);
    console.info(`error happened,error Message is ${error.message}`);
W
wusongqing 已提交
271
  }
W
wusongqing 已提交
272

W
wusongqing 已提交
273 274
  // Report an error in the case of a function invocation exception.
  catchCallback(error) {
W
wusongqing 已提交
275 276 277
    console.info(`catch error happened,error Name is ${error.name}`);
    console.info(`catch error happened,error Code is ${error.code}`);
    console.info(`catch error happened,error Message is ${error.message}`);
W
wusongqing 已提交
278
  }
W
wusongqing 已提交
279

W
wusongqing 已提交
280 281 282 283 284 285 286 287 288 289 290
  // Used to print the video track information.
  printfDescription(obj) {
    for (let item in obj) {
      let property = obj[item];
      console.info('key is ' + item);
      console.info('value is ' + property);
    }
  }

  async videoPlayerDemo() {
    let videoPlayer = undefined;
W
wusongqing 已提交
291
    let surfaceID = 'test' // The surfaceID parameter is used for screen display. Its value is obtained through the XComponent API. For details about the document link, see the method of creating the XComponent.
W
wusongqing 已提交
292 293 294 295 296 297
    let fdPath = 'fd://'
    // The stream in the path can be pushed to the device by running the "hdc file send D:\xxx\H264_AAC.mp4 /data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile" command.
    let path = '/data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile/H264_AAC.mp4';
    let nextPath = '/data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile/MP4_AAC.mp4';
    await fileIO.open(path).then((fdNumber) => {
      fdPath = fdPath + '' + fdNumber;
JoyboyCZ's avatar
JoyboyCZ 已提交
298
      console.info('open fd success fd is' + fdPath);
W
wusongqing 已提交
299 300 301 302
    }, (err) => {
      console.info('open fd failed err is' + err);
    }).catch((err) => {
      console.info('open fd failed err is' + err);
W
wusongqing 已提交
303
    });
W
wusongqing 已提交
304 305 306
    // Call createVideoPlayer to create a VideoPlayer instance.
    await media.createVideoPlayer().then((video) => {
      if (typeof (video) != 'undefined') {
W
wusongqing 已提交
307 308
        console.info('createVideoPlayer success!');
        videoPlayer = video;
W
wusongqing 已提交
309
      } else {
W
wusongqing 已提交
310
        console.info('createVideoPlayer fail!');
W
wusongqing 已提交
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339
      }
    }, this.failureCallback).catch(this.catchCallback);
    // Set the playback source for the player.
    videoPlayer.url = fdPath;

    // Set the surface ID to display the video image.
    await videoPlayer.setDisplaySurface(surfaceID).then(() => {
      console.info('setDisplaySurface success');
    }, this.failureCallback).catch(this.catchCallback);

    // Call the prepare API to prepare for playback.
    await videoPlayer.prepare().then(() => {
      console.info('prepare success');
    }, this.failureCallback).catch(this.catchCallback);

    // Call the play API to start playback.
    await videoPlayer.play().then(() => {
      console.info('play success');
    }, this.failureCallback).catch(this.catchCallback);

    // Reset the playback configuration.
    await videoPlayer.reset().then(() => {
      console.info('reset success');
    }, this.failureCallback).catch(this.catchCallback);

    // Obtain the next video FD address.
    fdPath = 'fd://'
    await fileIO.open(nextPath).then((fdNumber) => {
      fdPath = fdPath + '' + fdNumber;
JoyboyCZ's avatar
JoyboyCZ 已提交
340
      console.info('open fd success fd is' + fdPath);
W
wusongqing 已提交
341 342 343 344 345 346 347 348
    }, (err) => {
      console.info('open fd failed err is' + err);
    }).catch((err) => {
      console.info('open fd failed err is' + err);
    });
    // Set the second video playback source.
    videoPlayer.url = fdPath;

W
wusongqing 已提交
349
    // Call the prepare API to prepare for playback.
W
wusongqing 已提交
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368
    await videoPlayer.prepare().then(() => {
      console.info('prepare success');
    }, this.failureCallback).catch(this.catchCallback);

    // Call the play API to start playback.
    await videoPlayer.play().then(() => {
      console.info('play success');
    }, this.failureCallback).catch(this.catchCallback);

    // Release playback resources.
    await videoPlayer.release().then(() => {
      console.info('release success');
    }, this.failureCallback).catch(this.catchCallback);

    // Set the related instances to undefined.
    videoPlayer = undefined;
    surfaceID = undefined;
  }
}
W
wusongqing 已提交
369 370 371 372 373
```

### Looping a Video Clip

```js
W
wusongqing 已提交
374 375
import media from '@ohos.multimedia.media'
import fileIO from '@ohos.fileio'
W
wusongqing 已提交
376 377 378
export class VideoPlayerDemo {
  // Report an error in the case of a function invocation failure.
  failureCallback(error) {
W
wusongqing 已提交
379 380 381
    console.info(`error happened,error Name is ${error.name}`);
    console.info(`error happened,error Code is ${error.code}`);
    console.info(`error happened,error Message is ${error.message}`);
W
wusongqing 已提交
382
  }
W
wusongqing 已提交
383

W
wusongqing 已提交
384 385
  // Report an error in the case of a function invocation exception.
  catchCallback(error) {
W
wusongqing 已提交
386 387 388
    console.info(`catch error happened,error Name is ${error.name}`);
    console.info(`catch error happened,error Code is ${error.code}`);
    console.info(`catch error happened,error Message is ${error.message}`);
W
wusongqing 已提交
389
  }
W
wusongqing 已提交
390

W
wusongqing 已提交
391 392 393 394 395 396 397 398 399 400 401
  // Used to print the video track information.
  printfDescription(obj) {
    for (let item in obj) {
      let property = obj[item];
      console.info('key is ' + item);
      console.info('value is ' + property);
    }
  }

  async videoPlayerDemo() {
    let videoPlayer = undefined;
W
wusongqing 已提交
402
    let surfaceID = 'test' // The surfaceID parameter is used for screen display. Its value is obtained through the XComponent API. For details about the document link, see the method of creating the XComponent.
W
wusongqing 已提交
403 404 405 406 407
    let fdPath = 'fd://'
    // The stream in the path can be pushed to the device by running the "hdc file send D:\xxx\H264_AAC.mp4 /data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile" command.
    let path = '/data/app/el1/bundle/public/ohos.acts.multimedia.video.videoplayer/ohos.acts.multimedia.video.videoplayer/assets/entry/resources/rawfile/H264_AAC.mp4';
    await fileIO.open(path).then((fdNumber) => {
      fdPath = fdPath + '' + fdNumber;
JoyboyCZ's avatar
JoyboyCZ 已提交
408
      console.info('open fd success fd is' + fdPath);
W
wusongqing 已提交
409 410 411 412
    }, (err) => {
      console.info('open fd failed err is' + err);
    }).catch((err) => {
      console.info('open fd failed err is' + err);
W
wusongqing 已提交
413
    });
W
wusongqing 已提交
414 415 416
    // Call createVideoPlayer to create a VideoPlayer instance.
    await media.createVideoPlayer().then((video) => {
      if (typeof (video) != 'undefined') {
W
wusongqing 已提交
417 418
        console.info('createVideoPlayer success!');
        videoPlayer = video;
W
wusongqing 已提交
419
      } else {
W
wusongqing 已提交
420
        console.info('createVideoPlayer fail!');
W
wusongqing 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436
      }
    }, this.failureCallback).catch(this.catchCallback);
    // Set the playback source for the player.
    videoPlayer.url = fdPath;

    // Set the surface ID to display the video image.
    await videoPlayer.setDisplaySurface(surfaceID).then(() => {
      console.info('setDisplaySurface success');
    }, this.failureCallback).catch(this.catchCallback);

    // Call the prepare API to prepare for playback.
    await videoPlayer.prepare().then(() => {
      console.info('prepare success');
    }, this.failureCallback).catch(this.catchCallback);
    // Set the loop playback attribute.
    videoPlayer.loop = true;
W
wusongqing 已提交
437
    // Call the play API to start loop playback.
W
wusongqing 已提交
438
    await videoPlayer.play().then(() => {
W
wusongqing 已提交
439
      console.info('play success, loop value is ' + videoPlayer.loop);
W
wusongqing 已提交
440 441 442
    }, this.failureCallback).catch(this.catchCallback);
  }
}
W
wusongqing 已提交
443
```