Embedding Video Annotations into PDFs on Android

This section is about embedded video annotations. For adding multimedia elements on demand, see our Multimedia Annotations guide instead.

Rich Media/Video Annotations

The default way to embed video into a PDF is by using rich media annotations. This annotation type can store and embed videos directly into the PDF and is supported on both iOS and Android. Rich media annotations can be created with Adobe Acrobat and other similar tools.

PSPDFKit currently does not support creating rich media annotations. If you are interested in this feature, please contact us on support.

Download a sample file with a rich media video here and try it with our free PDF Viewer apps.

Various customizations and rich media control actions, such as show/hide controls, are supported.

⚠️ Warning: Ensure the codec used is either a standard MPG/H264 or a similar type that is universally supported. Acrobat, in most cases, uses Flash for playing videos, as it supports some less common outdated formats as well.

Showing/Hiding Video Controls

By default, video controls are always shown. There might be documents with a flag set on the video annotation, in order to explicitly hide video controls. If you still want to show controls, this can be altered in the document itself by setting the Playback Control Skin to All Controls in Adobe Acrobat.

You can also set the CONTROLS_ENABLED flag via setMediaOptions(), which is located on the annotation object.

You can use the following code snippet after loading the PdfDocument to enable controls for all rich media annotations in the document:

document.annotationProvider.getAllAnnotationsOfType(EnumSet.of(AnnotationType.RICHMEDIA))
    .cast(RichMediaAnnotation::class.java)
    .subscribe { it.setMediaOptions(EnumSet.of(MediaOptions.CONTROLS_ENABLED)) }
document.getAnnotationProvider().getAllAnnotationsOfType(EnumSet.of(AnnotationType.RICHMEDIA))
    .cast(RichMediaAnnotation.class)
    .subscribe(annotation -> {
        annotation.setMediaOptions(EnumSet.of(MediaOptions.CONTROLS_ENABLED));
    });

Autoplay

The PDF format defines autoplay in the RichMediaSettings dictionary as RichMediaActivation. Both PO and PV are supported activation conditions, but PSPDFKit treats them the same and will trigger start once the page has appeared. (XA is another possible video activation condition, and it is used if the value is omitted.)

PSPDFKit exposes autoplay as a flag on the annotation object.

Supported Audio/Video Formats

PSPDFKit passes the extracted audio or video material to the system player. The supported context, bitrates, etc. depend on your target platform and OS version. Both iOS and Android support most variations of MP3 audio and MP4 video formats. However, please test content on an actual device, as support in simulator/emulator environments can be different.

Content Appearance

Rich media (video/audio) annotations are usually displayed via embedded Flash controls, which are not supported on mobile. PSPDFKit will extract the content and has logic to interpret common parameters such as showing/hiding controls. There is a variety of Flash players used, so it’s not always possible to map all variables. Please ping support if you have a document that is not correctly interpreted.

Rich media annotations are defined in Adobe® Supplement to the ISO 32000 Specification, BaseVersion: 1.7 ExtensionLevel: 3.