|
MobileFFmpeg IOS API
3.1
|
Instance Methods | |
| (int) | - mobileffmpeg_system_execute [implementation] |
Class Methods | |
| (NSString *) | + getFFmpegVersion |
| (NSString *) | + getVersion |
| (int) | + executeWithArguments: |
| (int) | + execute: |
| (int) | + execute:delimiter: |
| (void) | + cancel |
| (int) | + getLastReturnCode |
| (NSString *) | + getLastCommandOutput |
| (MediaInformation *) | + getMediaInformation: |
| (MediaInformation *) | + getMediaInformation:timeout: |
| (void) | + initialize [implementation] |
Main class for FFmpeg operations.
Definition at line 37 of file MobileFFmpeg.h.
| + (void) cancel |
Cancels an ongoing operation.
This function does not wait for termination to complete and returns immediately.
Definition at line 135 of file MobileFFmpeg.m.
| + (int) execute: | (NSString*) | command |
Synchronously executes FFmpeg command provided. Space character is used to split command into arguments.
| FFmpeg | command |
Definition at line 111 of file MobileFFmpeg.m.
Synchronously executes FFmpeg command provided. Delimiter parameter is used to split command into arguments.
| FFmpeg | command |
| arguments | delimiter |
Definition at line 123 of file MobileFFmpeg.m.
| + (int) executeWithArguments: | (NSArray*) | arguments |
Synchronously executes FFmpeg with arguments provided.
| FFmpeg | command options/arguments as string array |
Definition at line 77 of file MobileFFmpeg.m.
| + (NSString *) getFFmpegVersion |
Returns FFmpeg version bundled within the library.
Returns FFmpeg version bundled within the library.
Definition at line 58 of file MobileFFmpeg.m.
| + (NSString *) getLastCommandOutput |
Returns log output of last executed command. Please note that disabling redirection using disableRedirection (MobileFFmpegConfig) method also disables this functionality.
Definition at line 154 of file MobileFFmpeg.m.
| + (int) getLastReturnCode |
Returns return code of last executed command.
Definition at line 144 of file MobileFFmpeg.m.
| + (MediaInformation *) getMediaInformation: | (NSString*) | path |
Returns media information for given file.
| path | or uri of media file |
Definition at line 164 of file MobileFFmpeg.m.
| + (MediaInformation *) getMediaInformation: | (NSString*) | path | |
| timeout: | (long) | timeout | |
Returns media information for given file.
| path | path or uri of media file |
| timeout | complete timeout |
Definition at line 175 of file MobileFFmpeg.m.
| + (NSString *) getVersion |
Returns MobileFFmpeg library version.
Returns MobileFFmpeg library version.
Definition at line 67 of file MobileFFmpeg.m.
|
implementation |
Definition at line 44 of file MobileFFmpeg.m.
|
implementation |
1.8.14