Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (49)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (8705)

  • Compiling FFmpeg on OSX - "speex not found using pkg-config"

    19 septembre 2016, par n4zArh

    I recently had few problems with FFmpeg and compiling it to get library. I managed to get through all of them, however recently I found out I need to add Speex decoder (and possibly encoder) to my project. I got Speex by sources, ./configure and make;make install (later - as I had problems - I also used Brew to download Speex). I added --enable-libspeex to my configure script and every time I try to use it I get "Speex not found using pkg-config" error.

    I am sure that there’s Speex files at /usr/local/include and lib directories, I also added those two as CFLAGS and LDFLAGS, I tried building Speex with or without using --prefix (both pointing to /usr/ and /usr/local/), I tried modifying FFmpeg’s configure file (require_pkg_config with Speex call), but no matter what I try to do I fail to build it - every time with same error.

    Long story short - how to build FFmpeg with Speex decoder on OSX ? I read somewhere that libspeex-dev might be needed, but it’s available through apt-get and not Brew (unless I screwed something up).

    My build script :

    #!/bin/bash

    if [ "$NDK" = "" ]; then
       echo NDK variable not set, assuming ${HOME}/android-ndk
       export NDK=${HOME}/Library/Android/sdk/ndk-bundle
    fi

    SYSROOT=$NDK/platforms/android-16/arch-arm
    # Expand the prebuilt/* path into the correct one
    TOOLCHAIN=`echo $NDK/toolchains/arm-linux-androideabi-4.9/prebuilt/darwin-x86_64`
    export PATH=$TOOLCHAIN/bin:$PATH

    rm -rf build/ffmpeg
    mkdir -p build/ffmpeg
    cd ffmpeg

    # Don't build any neon version for now
    for version in armv5te armv7a; do

    DEST=../build/ffmpeg
    FLAGS="--target-os=linux --cross-prefix=arm-linux-androideabi- --arch=arm"
    FLAGS="$FLAGS --sysroot=$SYSROOT"
    FLAGS="$FLAGS --enable-shared --disable-symver"
    FLAGS="$FLAGS --enable-small"
    FLAGS="$FLAGS --disable-everything"
    FLAGS="$FLAGS --enable-decoder=h264 --enable-decoder=adpcm_ima_oki --enable-decoder=adpcm_ima_ws"
    FLAGS="$FLAGS --enable-encoder=adpcm_ima_qt --enable-encoder=adpcm_ima_wav --enable-encoder=adpcm_g726"
    FLAGS="$FLAGS --enable-encoder=adpcm_g722 --enable-libspeex"

    case "$version" in
       neon)
           EXTRA_CFLAGS="-march=armv7-a -mfloat-abi=softfp -mfpu=neon"
           EXTRA_LDFLAGS="-Wl,--fix-cortex-a8"
           # Runtime choosing neon vs non-neon requires
           # renamed files
           ABI="armeabi-v7a"
           ;;
       armv7a)
           EXTRA_CFLAGS="-march=armv7-a -mfloat-abi=softfp"
           EXTRA_LDFLAGS=""
           ABI="armeabi-v7a"
           ;;
       *)
           EXTRA_CFLAGS=""
           EXTRA_LDFLAGS=""
           ABI="armeabi"
           ;;
    esac
    DEST="$DEST/$ABI"
    FLAGS="$FLAGS --prefix=$DEST"
    EXTRA_CFLAGS="$EXTRA_CFLAGS -I/usr/local/include/"
    EXTRA_LDFLAGS="$EXTRA_LDFLAGS -L/usr/local/lib"
    PKT_CONFIG_PATH="/usr/lib/pkgconfig/"
    mkdir -p $DEST
    echo $FLAGS --extra-cflags="$EXTRA_CFLAGS" --extra-ldflags="$EXTRA_LDFLAGS" > $DEST/info.txt
    ./configure $FLAGS --extra-cflags="$EXTRA_CFLAGS" --extra-ldflags="$EXTRA_LDFLAGS" | tee $DEST/configuration.txt
    [ $PIPESTATUS == 0 ] || exit 1
    rm compat/strtod.o
    rm compat/strtod.d
    make clean
    make -j4 || exit 1
    make install || exit 1

    done

    Tail of config.log :

    BEGIN /tmp/ffconf.QcYgKHFW.c
       1   #include
       2   #include
       3   float foo(complex float f, complex float g) { return cabs(f * I); }
       4   int main(void){ return (int) foo; }
    END /tmp/ffconf.QcYgKHFW.c
    arm-linux-androideabi-gcc --sysroot=/Users/mgriszbacher/Library/Android/sdk/ndk-bundle/platforms/android-16/arch-arm -isysroot /Users/mgriszbacher/Library/Android/sdk/ndk-bundle/platforms/android-16/arch-arm -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Dstrtod=avpriv_strtod -DPIC -I/usr/local/include/ -march=armv5te -std=c99 -fomit-frame-pointer -fPIC -marm -pthread -c -o /tmp/ffconf.vfjjuG7b.o /tmp/ffconf.QcYgKHFW.c
    /tmp/ffconf.QcYgKHFW.c:1:21: fatal error: complex.h: No such file or directory
    #include
                    ^
    compilation terminated.
    check_complexfunc cexp 1
    check_ld cc
    check_cc
    BEGIN /tmp/ffconf.QcYgKHFW.c
       1   #include
       2   #include
       3   float foo(complex float f, complex float g) { return cexp(f * I); }
       4   int main(void){ return (int) foo; }
    END /tmp/ffconf.QcYgKHFW.c
    arm-linux-androideabi-gcc --sysroot=/Users/mgriszbacher/Library/Android/sdk/ndk-bundle/platforms/android-16/arch-arm -isysroot /Users/mgriszbacher/Library/Android/sdk/ndk-bundle/platforms/android-16/arch-arm -D_ISOC99_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -Dstrtod=avpriv_strtod -DPIC -I/usr/local/include/ -march=armv5te -std=c99 -fomit-frame-pointer -fPIC -marm -pthread -c -o /tmp/ffconf.vfjjuG7b.o /tmp/ffconf.QcYgKHFW.c
    /tmp/ffconf.QcYgKHFW.c:1:21: fatal error: complex.h: No such file or directory
    #include
                    ^
    compilation terminated.
    check_pkg_config speex speex/speex.h speex_decoder_init -lspeex
    false --exists --print-errors speex
    ERROR: speex not found using pkg-config
  • mediastreamvalidator "Error injecting segment data" and Can't deal with multiple sample timings per sample buffer

    14 juin 2018, par Dathan Vance Pattishall

    So using ffmpeg

    /usr/local/bin/ffmpeg -i track.m4a -vn -c:a aac -b:a 192k  -f segment -segment_list 93_jrf2niqb7n2s8pzjopkqvbbw1wmzz3foqrsa93bm.m3u8 -segment_time 120 -segment_format_options movflags=faststart  93_jrf2niqb7n2s8pzjopkqvbbw1wmzz3foqrsa93bm.%03d.m4a

    a playlist file is created where

    #EXTM3U
    #EXT-X-VERSION:3
    #EXT-X-MEDIA-SEQUENCE:0
    #EXT-X-ALLOW-CACHE:YES
    #EXT-X-TARGETDURATION:121
    #EXTINF:120.000726,
    93_jrf2niqb7n2s8pzjopkqvbbw1wmzz3foqrsa93bm.000.m4a
    #EXTINF:119.883175,
    93_jrf2niqb7n2s8pzjopkqvbbw1wmzz3foqrsa93bm.001.m4a
    #EXT-X-ENDLIST

    Then using mediastreamvalidator I get the following output which leads me to believe there are errors which I have no idea how to fix. I am assuming that ffmpeg is jacking up the segmenting.

    mediastreamvalidator http://**OMIT**/AMP/1/92_y7lu9u1qy5wsw2fqn61mankqof7lkuu5qvk7asv5.m3u8
    mediastreamvalidator: Version 1.2(160525)

    [/AMP/1/92_y7lu9u1qy5wsw2fqn61mankqof7lkuu5qvk7asv5.m3u8] Started root playlist download
    [/AMP/1/92_y7lu9u1qy5wsw2fqn61mankqof7lkuu5qvk7asv5.m3u8] Started media playlist download
    Error injecting segment data
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    Can't deal with multiple sample timings per sample buffer
    [/AMP/1/92_y7lu9u1qy5wsw2fqn61mankqof7lkuu5qvk7asv5.m3u8] All media files delivered and have end tag, stopping

    --------------------------------------------------------------------------------
    http://**OMIT**/AMP/1/92_y7lu9u1qy5wsw2fqn61mankqof7lkuu5qvk7asv5.m3u8
    --------------------------------------------------------------------------------
    Processed 1 out of 2 segments
    Average segment duration: 119.941950
    Total segment bitrates (all discontinuities): average: 130.88 kb/s, max: 131.25 kb/s


    Discontinuity: sequence: 0, parsed segment count: 1 of 2, duration: 239.884 sec, average: 130.88 kb/s, max: 131.25 kb/s
    Track ID: 1
    Audio Codec: AAC-LC
    Audio sample rate: 44100 Hz
    Audio channel layout: Stereo (L R)

    So, my question is what is "Error injecting segment data" and "Can’t deal with multiple sample timings per sample buffer" and why is the segment messed up ?

  • How can I remove "original display aspect ratio" from a mp4 file using ffmpeg ?

    21 juin 2020, par aveceux

    I wish to remove the "original display aspect ratio" entry from the video section.

    



    Video
ID                             : 1
Format                         : AVC
Format/Info                    : Advanced Video Codec
Format profile                 : High@L4
Format settings                : CABAC / 4 Ref Frames
Format settings, CABAC         : Yes
Format settings, ReFrames      : 4 frames
Codec ID                       : avc1
Codec ID/Info                  : Advanced Video Coding
Duration                       : 44 min 29 s
Bit rate                       : 5 001 kb/s
Width                          : 1 920 pixels
Height                         : 1 072 pixels
Display aspect ratio           : 16:9
Original display aspect ratio  : 16:9
Frame rate mode                : Constant
Frame rate                     : 25.000 FPS
Color space                    : YUV
Chroma subsampling             : 4:2:0
Bit depth                      : 8 bits
Scan type                      : Progressive
Bits/(Pixel*Frame)             : 0.097
Stream size                    : 1.55 GiB (97%)


    



    I tried the following commands,

    



    ffmpeg -i input.mp4 -map_metadata -1 -c copy output.mp4

    



    ffmpeg -i input.mp4 -metadata original_display_aspect_ratio=0 -c copy output.mp4

    



    but none of them worked.

    



    If I want to remove the "original display aspect ratio" entry completely, what ffmpeg command can I use to achieve that ?

    



    Thank you.

    



    EDIT :
The result of mediainfo -f :

    



    General
Count                                    : 331
Count of stream of this kind             : 1
Kind of stream                           : General
Kind of stream                           : General
Stream identifier                        : 0
Count of video streams                   : 1
Count of audio streams                   : 1
Video_Format_List                        : AVC
Video_Format_WithHint_List               : AVC
Codecs Video                             : AVC
Audio_Format_List                        : AAC LC
Audio_Format_WithHint_List               : AAC LC
Audio codecs                             : AAC LC
Complete name                            : Downloads/3.mp4
File name                                : Downloads/3.mp4
File name                                : Downloads/3
File extension                           : mp4
Format                                   : MPEG-4
Format                                   : MPEG-4
Format/Extensions usually used           : mov mp4 m4v m4a m4b m4p 3ga 3gpa 3gpp 3gp 3gpp2 3g2 k3g jpm jpx mqv ismv isma ismt f4a f4b f4v
Commercial name                          : MPEG-4
Format profile                           : Base Media
Internet media type                      : video/mp4
Codec ID                                 : isom
Codec ID                                 : isom (isom/iso2/avc1/mp41/letv)
Codec ID/Url                             : http://www.apple.com/quicktime/download/standalone.html
CodecID_Compatible                       : isom/iso2/avc1/mp41/letv
File size                                : 1715744367
File size                                : 1.60 GiB
File size                                : 2 GiB
File size                                : 1.6 GiB
File size                                : 1.60 GiB
File size                                : 1.598 GiB
Duration                                 : 2670080
Duration                                 : 44 min 30 s
Duration                                 : 44 min 30 s 80 ms
Duration                                 : 44 min 30 s
Duration                                 : 00:44:30.080
Duration                                 : 00:44:29:24
Duration                                 : 00:44:30.080 (00:44:29:24)
Overall bit rate                         : 5140653
Overall bit rate                         : 5 141 kb/s
Frame rate                               : 25.000
Frame rate                               : 25.000 FPS
Frame count                              : 66749
Stream size                              : 3988740
Stream size                              : 3.80 MiB (0%)
Stream size                              : 4 MiB
Stream size                              : 3.8 MiB
Stream size                              : 3.80 MiB
Stream size                              : 3.804 MiB
Stream size                              : 3.80 MiB (0%)
Proportion of this stream                : 0.00232
HeaderSize                               : 1510470
DataSize                                 : 1711755635
FooterSize                               : 2478262
IsStreamable                             : Yes
File creation date                       : UTC 2019-02-20 11:24:46.448
File creation date (local)               : 2019-02-20 19:24:46.448
File last modification date              : UTC 2017-05-26 00:00:00.000
File last modification date (local)      : 2017-05-26 08:00:00.000
Writing application                      : Lavf56.15.102
Writing application                      : Lavf56.15.102

Video
Count                                    : 348
Count of stream of this kind             : 1
Kind of stream                           : Video
Kind of stream                           : Video
Stream identifier                        : 0
StreamOrder                              : 0
ID                                       : 1
ID                                       : 1
Format                                   : AVC
Format                                   : AVC
Format/Info                              : Advanced Video Codec
Format/Url                               : http://developers.videolan.org/x264.html
Commercial name                          : AVC
Format profile                           : High@L4
Format settings                          : CABAC / 4 Ref Frames
Format settings, CABAC                   : Yes
Format settings, CABAC                   : Yes
Format settings, ReFrames                : 4
Format settings, ReFrames                : 4 frames
Internet media type                      : video/H264
Codec ID                                 : avc1
Codec ID/Info                            : Advanced Video Coding
Duration                                 : 2669960
Duration                                 : 44 min 29 s
Duration                                 : 44 min 29 s 960 ms
Duration                                 : 44 min 29 s
Duration                                 : 00:44:29.960
Duration                                 : 00:44:29:24
Duration                                 : 00:44:29.960 (00:44:29:24)
Bit rate                                 : 5000927
Bit rate                                 : 5 001 kb/s
Width                                    : 1920
Width                                    : 1 920 pixels
Height                                   : 1072
Height                                   : 1 072 pixels
Sampled_Width                            : 1920
Sampled_Height                           : 1072
Pixel aspect ratio                       : 0.993
Display aspect ratio                     : 1.779
Display aspect ratio                     : 16:9
Original display aspect ratio            : 1.778
Original display aspect ratio            : 16:9
Rotation                                 : 0.000
Frame rate mode                          : CFR
Frame rate mode                          : Constant
FrameRate_Mode_Original                  : VFR
Frame rate                               : 25.000
Frame rate                               : 25.000 FPS
Frame count                              : 66749
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Chroma subsampling                       : 4:2:0
Bit depth                                : 8
Bit depth                                : 8 bits
Scan type                                : Progressive
Scan type                                : Progressive
Bits/(Pixel*Frame)                       : 0.097
Stream size                              : 1669034254
Stream size                              : 1.55 GiB (97%)
Stream size                              : 2 GiB
Stream size                              : 1.6 GiB
Stream size                              : 1.55 GiB
Stream size                              : 1.554 GiB
Stream size                              : 1.55 GiB (97%)
Proportion of this stream                : 0.97278
Codec configuration box                  : avcC

Audio
Count                                    : 277
Count of stream of this kind             : 1
Kind of stream                           : Audio
Kind of stream                           : Audio
Stream identifier                        : 0
StreamOrder                              : 1
ID                                       : 2
ID                                       : 2
Format                                   : AAC
Format                                   : AAC LC
Format/Info                              : Advanced Audio Codec Low Complexity
Commercial name                          : AAC
Format_AdditionalFeatures                : LC
Codec ID                                 : mp4a-40-2
Duration                                 : 2670080
Duration                                 : 44 min 30 s
Duration                                 : 44 min 30 s 80 ms
Duration                                 : 44 min 30 s
Duration                                 : 00:44:30.080
Duration                                 : 00:44:34:09
Duration                                 : 00:44:30.080 (00:44:34:09)
Bit rate mode                            : CBR
Bit rate mode                            : Constant
Bit rate                                 : 128000
Bit rate                                 : 128 kb/s
Channel(s)                               : 2
Channel(s)                               : 2 channels
Channel positions                        : Front: L R
Channel positions                        : 2/0/0
Channel layout                           : L R
Samples per frame                        : 1024
Sampling rate                            : 44100
Sampling rate                            : 44.1 kHz
Samples count                            : 117750528
Frame rate                               : 43.066
Frame rate                               : 43.066 FPS (1024 SPF)
Frame count                              : 114991
Compression mode                         : Lossy
Compression mode                         : Lossy
Stream size                              : 42721373
Stream size                              : 40.7 MiB (2%)
Stream size                              : 41 MiB
Stream size                              : 41 MiB
Stream size                              : 40.7 MiB
Stream size                              : 40.74 MiB
Stream size                              : 40.7 MiB (2%)
Proportion of this stream                : 0.02490
Default                                  : Yes
Default                                  : Yes
Alternate group                          : 1
Alternate group                          : 1