VideoHelp Forum
+ Reply to Thread
Results 1 to 3 of 3
Thread
  1. Member
    Join Date
    Sep 2021
    Location
    Germany
    Search Comp PM
    Hi everyone,
    new to FFmpeg and muxing remuxing stuff.
    I have Qoocam 8K 360 camera which creates MOV container with 2 video tracks and 1 audio track. Camera also, presumably, creates metadata with on board sensors for stabilization and orientation purposes (perhaps even more proprietary data).
    I own Video Enhance AI software from Topaz Labs and I would like to:

    1. extract both video tracks
    2. enhance quality of those tracks (in Video Enhance AI)
    3. replace those two video tracks in original MOV file
    4. Stitch in Qoocam Studio to create equirectangular enhanced video file.

    Is there any other way to achieve better AI quality of the video?

    Enhancing stitched equirectangular footage creates artefacts at nadir and zenith areas because Topaz Labs products are not 360 aware.

    extracting all tracks:
    ffmpeg -i in.mov -c copy -map 0:v:0 out_0.mov
    ffmpeg -i in.mov -c copy -map 0:v:1 out_1.mov
    ffmpeg -i in.mov -c copy -map 0:a:0 out.wav

    combining tracks together (metadata is missing in Qoocam Studio error), this way the file isnt recognized in Qoocam Studio:
    ffmpeg -i Q360_20201108_135512_000000_track0.mov -i Q360_20201108_135512_000000_track1.mov -i audio_0.wav -c copy -map 0 -map 1 -map 2 output.mov

    Code:
    General
    Complete name                            : V:\Qoocam 8K remux video test 02\Q360_20201108_135512_000000.MOV
    Format                                   : MPEG-4
    Format profile                           : QuickTime
    Codec ID                                 : qt   0000.02 (qt  )
    File size                                : 41.4 MiB
    Duration                                 : 1 s 67 ms
    Overall bit rate                         : 326 Mb/s
    Encoded date                             : UTC 2020-11-08 13:55:14
    Tagged date                              : UTC 2020-11-08 13:55:14
    Writing application                      : Lavf57.56.100
    
    Video #1
    ID                                       : 1
    Format                                   : HEVC
    Format/Info                              : High Efficiency Video Coding
    Format profile                           : Main@L6@Main
    Codec ID                                 : hvc1
    Codec ID/Info                            : High Efficiency Video Coding
    Duration                                 : 1 s 67 ms
    Bit rate                                 : 110 Mb/s
    Width                                    : 3 840 pixels
    Height                                   : 3 840 pixels
    Display aspect ratio                     : 1.000
    Frame rate mode                          : Constant
    Frame rate                               : 30.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Bits/(Pixel*Frame)                       : 0.248
    Stream size                              : 14.0 MiB (34%)
    Language                                 : English
    Encoded date                             : UTC 2020-11-08 13:55:14
    Tagged date                              : UTC 2020-11-08 13:55:14
    Color range                              : Full
    Color primaries                          : BT.709
    Transfer characteristics                 : BT.709
    Matrix coefficients                      : BT.709
    Codec configuration box                  : hvcC
    
    Video #2
    ID                                       : 2
    Format                                   : HEVC
    Format/Info                              : High Efficiency Video Coding
    Format profile                           : Main@L6@Main
    Codec ID                                 : hvc1
    Codec ID/Info                            : High Efficiency Video Coding
    Duration                                 : 1 s 67 ms
    Bit rate                                 : 119 Mb/s
    Width                                    : 3 840 pixels
    Height                                   : 3 840 pixels
    Display aspect ratio                     : 1.000
    Frame rate mode                          : Constant
    Frame rate                               : 30.000 FPS
    Color space                              : YUV
    Chroma subsampling                       : 4:2:0
    Bit depth                                : 8 bits
    Bits/(Pixel*Frame)                       : 0.268
    Stream size                              : 15.1 MiB (36%)
    Language                                 : English
    Default                                  : No
    Encoded date                             : UTC 2020-11-08 13:55:14
    Tagged date                              : UTC 2020-11-08 13:55:14
    Color range                              : Full
    Color primaries                          : BT.709
    Transfer characteristics                 : BT.709
    Matrix coefficients                      : BT.709
    Codec configuration box                  : hvcC
    
    Audio
    ID                                       : 3
    Format                                   : PCM
    Format settings                          : Little / Signed
    Codec ID                                 : sowt
    Duration                                 : 1 s 46 ms
    Bit rate mode                            : Constant
    Bit rate                                 : 1 536 kb/s
    Channel(s)                               : 2 channels
    Channel layout                           : L R
    Sampling rate                            : 48.0 kHz
    Bit depth                                : 16 bits
    Stream size                              : 196 KiB (0%)
    Language                                 : English
    Default                                  : Yes
    Alternate group                          : 1
    Encoded date                             : UTC 2020-11-08 13:55:14
    Tagged date                              : UTC 2020-11-08 13:55:14
    Quote Quote  
  2. ffmpeg can copy some types of metadata

    can you identify any metadata in the source ? Try mediainfo, exiftool

    Or do you know where the "metadata" is - is it a separate track, embedded in video bitstream etc.. ?

    It might be helpful to post an unprocessed source sample
    Quote Quote  
  3. Try upscaling with nnedi3_rpow2
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!