Recherche avancée

Médias (91)

Autres articles (11)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (3057)

  • mov : Add support parsing QuickTime Metadata Keys.

    23 octobre 2015, par Tinglin Liu
    mov : Add support parsing QuickTime Metadata Keys.
    

    The Apple dev specification :
    https://developer.apple.com/library/mac/documentation/QuickTime/QTFF/Metadata/Metadata.html

    Basically the structure is like :
    |—meta
    |----hdlr
    |----keys
    |----ilst

    1) The handler type in the metadata handler atom is ‘mdta’.
    2) The key and value are stored separately for each key-value pair.
    The ’keys’ atom stores the key table, while ’ilst’ atom stores the
    values corresponding to the indices in the key table.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/isom.h
    • [DH] libavformat/mov.c
  • Merge video with ffmpeg

    17 mars 2017, par Björn

    I have tried this command :
    ffmpeg -i 'concat:10.mov|11.mov' -codec copy out.mov
    The output file out.mov only shows whats in the first movie (10.mov).

    Been googling for several hours and tried lots of things but nothing works. I want this done without re-encoding the files. Just merge with the same codec

    ffmpeg version 3.2.4 Copyright (c) 2000-2017 the FFmpeg developers
     built with Apple LLVM version 8.0.0 (clang-800.0.42.1)
     configuration: --prefix=/usr/local/Cellar/ffmpeg/3.2.4 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda
     libavutil      55. 34.101 / 55. 34.101
     libavcodec     57. 64.101 / 57. 64.101
     libavformat    57. 56.101 / 57. 56.101
     libavdevice    57.  1.100 / 57.  1.100
     libavfilter     6. 65.100 /  6. 65.100
     libavresample   3.  1.  0 /  3.  1.  0
     libswscale      4.  2.100 /  4.  2.100
     libswresample   2.  3.100 /  2.  3.100
     libpostproc    54.  1.100 / 54.  1.100
    [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7ff678802600] Found duplicated MOOV Atom. Skipped it
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'concat:10.mov|11.mov':
     Metadata:
       creation_time   : 2017-03-17T12:15:22.000000Z
       major_brand     : qt<br />
       minor_version   : 537134592
       compatible_brands: qt<br />
     Duration: 00:00:29.96, start: 0.000000, bitrate: 140810 kb/s
       Stream #0:0: Video: prores (apcn / 0x6E637061), yuv422p10le, 1280x720, 116735 kb/s, SAR 1:1 DAR 16:9, 50 fps, 50 tbr, 5k tbn, 5k tbc (default)
       Metadata:
         handler_name    : Telestream Inc. Telestream Media Framework - Local 99.99.999999
         encoder         : Apple ProRes 422
    Output #0, mov, to 'out.mov':
     Metadata:
       compatible_brands: qt<br />
       major_brand     : qt<br />
       minor_version   : 537134592
       encoder         : Lavf57.56.101
       Stream #0:0: Video: prores (apcn / 0x6E637061), yuv422p10le, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 116735 kb/s, 50 fps, 50 tbr, 10k tbn, 5k tbc (default)
       Metadata:
         handler_name    : Telestream Inc. Telestream Media Framework - Local 99.99.999999
         encoder         : Apple ProRes 422
    Stream mapping:
     Stream #0:0 -> #0:0 (copy)
    Press [q] to stop, [?] for help
    frame= 1498 fps=0.0 q=-1.0 Lsize=  426938kB time=00:00:29.94 bitrate=116815.8kbits/s speed=50.8x<br />
    video:426930kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.001997%

    Any ideas ? Would make my life very much easier if I got this to work :)

  • Merge video with ffmpeg

    29 mai, par Björn

    I have tried this command :&#xA;ffmpeg -i &#x27;concat:10.mov|11.mov&#x27; -codec copy out.mov&#xA;The output file out.mov only shows whats in the first movie (10.mov).

    &#xA;

    Been googling for several hours and tried lots of things but nothing works. I want this done without re-encoding the files. Just merge with the same codec

    &#xA;

    ffmpeg version 3.2.4 Copyright (c) 2000-2017 the FFmpeg developers&#xA;  built with Apple LLVM version 8.0.0 (clang-800.0.42.1)&#xA;  configuration: --prefix=/usr/local/Cellar/ffmpeg/3.2.4 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda&#xA;  libavutil      55. 34.101 / 55. 34.101&#xA;  libavcodec     57. 64.101 / 57. 64.101&#xA;  libavformat    57. 56.101 / 57. 56.101&#xA;  libavdevice    57.  1.100 / 57.  1.100&#xA;  libavfilter     6. 65.100 /  6. 65.100&#xA;  libavresample   3.  1.  0 /  3.  1.  0&#xA;  libswscale      4.  2.100 /  4.  2.100&#xA;  libswresample   2.  3.100 /  2.  3.100&#xA;  libpostproc    54.  1.100 / 54.  1.100&#xA;[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7ff678802600] Found duplicated MOOV Atom. Skipped it&#xA;Input #0, mov,mp4,m4a,3gp,3g2,mj2, from &#x27;concat:10.mov|11.mov&#x27;:&#xA;  Metadata:&#xA;    creation_time   : 2017-03-17T12:15:22.000000Z&#xA;    major_brand     : qt  &#xA;    minor_version   : 537134592&#xA;    compatible_brands: qt  &#xA;  Duration: 00:00:29.96, start: 0.000000, bitrate: 140810 kb/s&#xA;    Stream #0:0: Video: prores (apcn / 0x6E637061), yuv422p10le, 1280x720, 116735 kb/s, SAR 1:1 DAR 16:9, 50 fps, 50 tbr, 5k tbn, 5k tbc (default)&#xA;    Metadata:&#xA;      handler_name    : Telestream Inc. Telestream Media Framework - Local 99.99.999999&#xA;      encoder         : Apple ProRes 422&#xA;Output #0, mov, to &#x27;out.mov&#x27;:&#xA;  Metadata:&#xA;    compatible_brands: qt  &#xA;    major_brand     : qt  &#xA;    minor_version   : 537134592&#xA;    encoder         : Lavf57.56.101&#xA;    Stream #0:0: Video: prores (apcn / 0x6E637061), yuv422p10le, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 116735 kb/s, 50 fps, 50 tbr, 10k tbn, 5k tbc (default)&#xA;    Metadata:&#xA;      handler_name    : Telestream Inc. Telestream Media Framework - Local 99.99.999999&#xA;      encoder         : Apple ProRes 422&#xA;Stream mapping:&#xA;  Stream #0:0 -> #0:0 (copy)&#xA;Press [q] to stop, [?] for help&#xA;frame= 1498 fps=0.0 q=-1.0 Lsize=  426938kB time=00:00:29.94 bitrate=116815.8kbits/s speed=50.8x    &#xA;video:426930kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.001997%&#xA;

    &#xA;

    Any ideas ? Would make my life very much easier if I got this to work :)

    &#xA;