U bekijkt help-inhoud voor de versie::
- 6.5
- 6.4
- 6.3
- 6.2
- Eerdere versies
Opmerking:
Are you a Dynamic Media customer?
If you are licensed to use Dynamic Media, refer to the Dynamic Media Video documentation.
Adobe Experience Manager Assets generates previews for video assets with the extension .mp4. If the format of the asset is not mp4, install the FFmpeg pack to generate a preview. See FFmpeg installation instructions. FFmpeg creates video renditions of type ogg and mp4. You can preview these renditions in the Adobe Experience Manager Assets user interface.
-
To upload the asset, click or tap Create from the toolbar and then choose Files. Alternatively, drop it directly in the assets area. See Uploading assets for details around the upload operation.
By default, the AEM Assets Touch UI does not let you upload any assets that are larger than 2 GB because of a file size limit. However, you can overwrite this limit by going into CRXDE Lite and creating a node under the /apps directory. The node must have the same node name, directory structure, and comparable node properties of order.
Note: The AEM Classic user interface does not have a 2 GB file size limit restriction. Also, end-to-end workflow for large video is not fully supported.
Perform the following steps to configure a higher file size limit (for example 30GB ) in the /apps directory:
-
In the /jcr_root/apps/dam folder, use the Create drop-down list to create a node with the following directory structure:
/gui/content/assets/_jcr_content/body/assetscontent/header/items/items/fileuploadAfter you create the node, the full path appears as the following:
/jcr_root/apps/dam/gui/content/assets/_jcr_content/body/assetscontent/header/items/items/fileupload
-
In the upper-left of the CRXDE Lite page, touch Save All.
The following is a snippet for the node in XML representation:
<?xml version="1.0" encoding="UTF-8"?> <jcr:root xmlns:sling="http://sling.apache.org/jcr/sling/1.0" xmlns:jcr="http://www.jcp.org/jcr/1.0" xmlns:nt="http://www.jcp.org/jcr/nt/1.0" jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/foundation/container"> <items jcr:primaryType="nt:unstructured"> <default jcr:primaryType="nt:unstructured" sling:resourceType="granite/ui/components/foundation/navigation"> <items jcr:primaryType="nt:unstructured"> <fileupload jcr:primaryType="nt:unstructured" sizeLimit="32212254720"/> </items> </default> </items> </jcr:root>