in Education by
Video does not capture in the right orientation when running the Camera Plugin example app on my iPhone X in Landscape. It works well in Portrait. pubspec.yaml version: 1.0.0+1 environment: sdk: ">=2.0.0-dev.68.0 <3.0.0" dependencies: flutter: sdk: flutter cupertino_icons: ^0.1.2 camera: ^0.4.2 path_provider: ^0.5.0 video_player: ^0.10.0 firebase_core: ^0.2.5 flutter doctor [✓] Flutter (Channel unknown, v1.1.0, on Mac OS X 10.14.3 18D109, locale en-AU) [✓] Android toolchain - develop for Android devices (Android SDK 28.0.3) [✓] iOS toolchain - develop for iOS devices (Xcode 10.1) [✓] Android Studio (version 3.2) [✓] Connected device (1 available) JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Till support lands in the official package, I have had success with flutter_ffmpeg to set proper metadata. const int AV_LOG_ERROR = 16; final FlutterFFmpeg _flutterFFmpeg = new FlutterFFmpeg(); _flutterFFmpeg.setLogLevel(AV_LOG_ERROR); /// The :s:v:0 after -metadata is the stream specifier, /// which just tells ffmpeg to which stream it should add the metadata. /// :s stands for the streams of the input file, /// :v selects video streams and the number is the stream index, /// zero-based - so this will select the first video stream. /// The -c option specifies the codec /// to be used, with copy for just copying the streams, without re-encoding. final String looselessConversion = '-i $videoPath.mp4 -c copy -metadata:s:v:0 rotate=90 $videoPath-processed.mp4'; try { final int returnCode = await _flutterFFmpeg.execute(looselessConversion); if(returnCode == 0) { // delete the origina video file await File('$videoPath.mp4').delete(); } else { throw _flutterFFmpeg.getLastCommandOutput(); } } catch (e) { print('video processing error: $e); } Because I am not encoding the video (just editing metadata) the process completes in less than 10ms for any length of a video file.

Related questions

0 votes
    I'm getting Authorization failure when trying to display a map in a flutter project using the google maps ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 7, 2022 in Education by JackTerrance
0 votes
    I'm new to flutter and can't resolve the issue. Your application could not be compiled, because its ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 17, 2022 in Education by JackTerrance
0 votes
    I'm new to flutter and can't resolve the issue. Your application could not be compiled, because its ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 15, 2022 in Education by JackTerrance
0 votes
    I need to build a pop up dialog box in my app. I am using Dialog class and wrapped it with ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 3, 2022 in Education by JackTerrance
0 votes
    I am adding an background image to the Splash screen, but is not rendering the image. Sometime it load ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 2, 2022 in Education by JackTerrance
0 votes
    I'm working on a program that displays a list from an SQFlite table. The future for the snapshot ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 30, 2022 in Education by JackTerrance
0 votes
    I have this operation EventModel data = EventModel(_nameEvent, _passEvent, _localEvent, _dateEventString); HashMap ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 13, 2022 in Education by JackTerrance
0 votes
    I'm new to Flutter Redux, I got a problem and I have no idea how to deal with it at all! ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 20, 2022 in Education by JackTerrance
0 votes
    I am trying to implement the reCaptcha function to my flutter app, but in the captcha registration I need ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 7, 2022 in Education by JackTerrance
0 votes
    I'm using the official Google Maps Flutter plugin to show maps and it works perfectly well but now I ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 21, 2022 in Education by JackTerrance
0 votes
    In android 2.3 camera preview show white screen how to solve this issue? JavaScript questions and answers, ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 3, 2022 in Education by JackTerrance
0 votes
    In android 2.3 camera preview show white screen how to solve this issue? JavaScript questions and answers, ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 2, 2022 in Education by JackTerrance
0 votes
    conclusion on hardware like LCD projector,scanner,printer,digital camera,camcorder and software like word processor,spreadsheet ppt Select the correct answer from above options...
asked Dec 21, 2021 in Education by JackTerrance
0 votes
    Software that is secure on a given platform, environment, and threat landscape can be considered secure in any other platform, environment or threat landscape. A. True B. False...
asked Feb 26, 2023 in Technology by JackTerrance
0 votes
    What is the effect of basins of attraction on energy landscape? (a) leads to small deviations (b) leads to ... (d) none of the mentioned Please answer the above question....
asked Sep 3, 2022 in Education by JackTerrance
...