video_editor_2 3.1.1  video_editor_2: ^3.1.1 copied to clipboard
video_editor_2: ^3.1.1 copied to clipboard
A flutter package for editing video with fully customizable UI. Supports crop, trim, rotation and cover selection.
3.1.1 #
- Refactor
3.1.0 #
- Refactor
3.0.2 #
- Refactor
3.0.1 #
- Refactor
3.0.0 #
- #147 by @Alberto-Monteiro
- Removed the dependency on the ffmpeg_kitpackage.
- Created FFmpegConfigto improve video and cover export functionality.
- Added an example demonstrating how to export video and cover images using either ffmpeg_kitorffmpeg_wasm, depending on the platform.
- Added defaultCoverThumbnailQualitytoVideoEditorController.fileconstructor.
- Updated the video_thumbnailversion to 0.6.0.
- Updated the project to work on the web.
- Updated the documentation to reflect these changes.
Breaking changes #
- Replaced FilewithXFileinVideoEditorController.file.
- Removed VideoEditorController.getMetaData.
- Removed VideoEditorController.exportVideo.
- Removed VideoEditorController.extractCover.
2.4.0 #
- 
Fix update TrimSlider trim values from controller #141 
- 
Add scrollControllerparam in TrimSlider #139
- 
Some controller's methods name has been changed : 
Breaking changes #
- updateCrop()method is now renamed- applyCacheCrop().
- Setters minTrim,maxTrim,minCrop&maxCrophas been removed.
 Prefer usingupdateTrim(min, max)and the newupdateCrop(min, max)methods instead.
2.3.0 #
- fixes GIF file exportation #134
Breaking changes #
- formatargument in- exportVideoand- exportCover, is now an object.
Before:
await controller.exportVideo(format: 'mp4', onCompleted: (_) {});
await controller.extractCover(format: 'jpg', onCompleted: (_) {});
After:
await controller.exportVideo(
  format: VideoExportFormat.mp4, // or const VideoExportFormat('mp4')
  onCompleted: (_) {}.
);
await controller.extractCover(
  format: CoverExportFormat.jpg, // or const CoverExportFormat('jpg')
  onCompleted: (_) {}.
);
2.2.0 #
2.1.0 #
2.0.0 #
- New trimmer gesture #124
- New animation during rotation #123
- Better trimmer #122
- Better crop boundaries touch detection #121
- New style parameters
- New thumbnails fadein animation at generation
- Video cursor position updated better while trimming
- Fix scale issue in thumbnails
Check migration guide.
1.5.2 #
- Fix scale issue when video is rotated
1.5.1 #
- New aspectRatioparam in initialize function, to set up the crop param without opening the crop view
- Fix some crop resize issue with ratio
- Fix scale issue
1.5.0 #
- Upgrade flutter_ffmpeg_kitto latest 5.1.0
1.4.4 #
- Fix export error when space in output path #108 by @martingeorgiu
- Bump video_thumbnaildependencies to 0.5.3 so upgrade android compileSdkVersion to 33
1.4.3 #
1.4.0 #
- Fix crop grid : gesture, aspect ratio, and painting area #87
- [MAJOR INTERNAL CROP CHANGES]
- The aspect ratio is resizing the crop area differently depending of the current crop ratio
- The crop rect is updated using Rect.LTRB
- The crop area gesture is detected differently
- The crop paint area is diplayed using Path.combine
 
1.3.1 #
1.3.0 #
1.2.4 #
- Updated dependencies
- Add isFiltersEnabledparam to disable all changes at extraction #76 by @AlexSmirnov9107
- Fix an error at extraction if the destination path contains a space #74 by @rgplvr
1.2.3 #
- Update ffmpeg_kit_flutterto latest 4.5.1 #65
- Print ffmpeg session state, return code and fail stack trace if exists #63
- New function to get metadata of video file #57
- Update README.mdaboutffmpeg_kit_flutterconfiguration #53 by @qiongshusheng
1.2.2 #
@legoffmael changes
1.2.1 #
@legoffmael changes
- Added icons customization in trimmer style #45
- Improved cover exportation + apply cover quality in thumbnail #46
- Fix exportation directory issues + add exportation parameters (cover format and exportation directory) #47
- Change how video dimensions are computed + update example and libraries #48
FELIPE MURGUIA changes
- Migrated to FFMPEG KIT xd
1.2.0 #
1.1.0 #
1.0.3+1 #
- [UNIDENTIFIED] ERROR FIXED.
1.0.3 #
- Progress bar on export
- Improved export function
1.0.2 #
- Improved cropping gestures
- TrimSlider bugs fixed
1.0.1 #
- 
Export Video: - VideoExportPreset
- customFFMPEGInstruction
 
- 
Trim Slider: - Load faster thumbnails
- MaxTrimDuration
- Bugs Fixed
 
1.0.0+1 #
- Export error fixed.
1.0.0 #
- Initial Release.
