Avishaidev / camera-preview-video

cordova-plugin-camera-preview with video recording feature
3 stars 6 forks source link

Get Base64 from video in IOS platform #4

Open Peixer opened 4 years ago

Peixer commented 4 years ago

I'm trying to get the base64 from .MOV file but the following method return corrupt base64

- (NSString ) base64StringFromFileAtPath: (NSString) filePath { NSData * dataFromFile = [NSData dataWithContentsOfFile:filePath]; return [dataFromFile base64EncodedStringWithOptions:0]; }

Does anyone know how to get base64 from video file?

Peixer commented 4 years ago

@Avishaidev do you have any idea?

Avishaidev commented 4 years ago

To get base64 from any video file i using File Plugin

Code: this.file.readAsDataURL('PATH_TO_FILE', 'FILE_NAME').then((base64Response) => { console.log('base64Response: ', base64Response) })