Online Documentation - Statistics - FAQ - Plugin Parts (All, Dependencies) - Class hierarchy
New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1
The list of the topics, classes, interfaces, controls, modules, global methods by category, global methods by name, screenshots, licenses and examples.
Platforms to show: All Mac Windows Linux Cross-Platform
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
class | AVFoundation | MBS AVFoundation Plugin | 13.2 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
An AVAssetExportSession object transcodes the contents of an AVAsset source object to create an output of the form described by a specified export preset.
Prior to initializing an instance of AVAssetExportSession, you can use allExportPresets to get the complete list of presets available. Use exportPresetsCompatibleWithAsset to get a list of presets that are compatible with a specific asset.
After you have initialized an export session with the asset that contains the source media, the export preset name (presetName), and the output file type (outputFileType), you can start the export running by invoking exportAsynchronously. Because the export is performed asynchronously, this method returns immediately—you can use progress to check on the progress. Depending on the capabilities of the device, some exports may be queued when multiple exports are attempted. When this happens, the status of a queued export will indicate that it's waiting (AVAssetExportSessionStatusWaiting).
The exportAsynchronouslyCompleted event on AVFoundationMBS is called whether the export fails, completes, or is cancelled. Upon completion, the status property indicates whether the export has completed successfully. If it has failed, the value of the error property supplies additional information about the reason for the failure.
Available in OS X v10.7 and later.
Constant | Value | Description |
---|---|---|
AVAssetExportSessionStatusCancelled | 5 |
Indicates that the export session was cancelled. |
AVAssetExportSessionStatusCompleted | 3 |
Indicates that the export session completed successfully. |
AVAssetExportSessionStatusExporting | 2 |
Indicates that the export session is in progress. |
AVAssetExportSessionStatusFailed | 4 |
Indicates that the export session failed. |
AVAssetExportSessionStatusUnknown | 0 |
Indicates that the status is unknown. |
AVAssetExportSessionStatusWaiting | 1 |
Indicates that the session is waiting to export more data. |
This class has no sub classes.
The items on this page are in the following plugins: MBS AVFoundation Plugin.
AvahiTypeBrowserMBS - AVAssetImageGeneratorMBS