Ross Martin

Results 84 comments of Ross Martin

Is the `ffmpegSuccess` or `ffmpegError` called? If the error callback is ran what is the error? Anything helpful in logcat?

There is an example in the `android-ffmpeg-java` library I'll dig it up later. Can you try adding `-y` before your `-i` in your ffmpeg command? ` '-framerate', '1/5', '-y', '-i',...

I think what you are after is to have the success callback on VideoEditor return an object with the following properties (similar to the `cordova-plugin-media-capture`) - ``` localURL fullPath MIMEType...

I think the new `getVideoInfo` function may make this enhancement obsolete? I'm guessing you want this enhancement so that you can get the information provided by the `getVideoInfo`. https://github.com/jbavari/cordova-plugin-video-editor#get-info-on-a-video-width-height-orientation-duration-size--bitrate

Thanks for providing all the info. `AVAssetExportSession` won't overwrite an existing output file so this is why the transcode is failing on a second time around with the same `outputFileName`....

Thanks, I plan to integrate some of these features.

I'm assuming by "it" you mean `transcodeVideo`. This will not work with `transcodeVideo`. You can likely get `execFFMPEG` to work with a video URL on android.

Thanks for all the info. I'll have to look into this and see if I can replicate with my old android device.

This is now possible on android using `execFFMPEG` (I added it in 1.0.1).

Thanks I see the issue here @razwasserstein @bertho-zero I plan on making a method for both platforms that lets you get information on a video (duration, size, width, height, codec,...