Recherche avancée

Médias (0)

Mot : - Tags -/médias

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (73)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5349)

  • HTML5 video duration varies across browsers when the start time is negative

    31 août 2017, par luis

    I’m working on a web video editor and the duration for videos with negative start time varies across browsers. Here’s the ffmpeg output :

    ffmpeg -i filename.mp4

    ffmpeg version 3.3.2 Copyright (c) 2000-2017 the FFmpeg developers
     built with Apple LLVM version 8.1.0 (clang-802.0.42)
     configuration: --prefix=/usr/local/Cellar/ffmpeg/3.3.2 --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. 58.100 / 55. 58.100
     libavcodec     57. 89.100 / 57. 89.100
     libavformat    57. 71.100 / 57. 71.100
     libavdevice    57.  6.100 / 57.  6.100
     libavfilter     6. 82.100 /  6. 82.100
     libavresample   3.  5.  0 /  3.  5.  0
     libswscale      4.  6.100 /  4.  6.100
     libswresample   2.  7.100 /  2.  7.100
     libpostproc    54.  5.100 / 54.  5.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Users/filipebrandao/Downloads/mars1.mp4':
     Metadata:
       major_brand     : mp42
       minor_version   : 1
       compatible_brands: mp41mp42isom
       creation_time   : 2017-08-24T19:43:26.000000Z
     Duration: 00:00:03.25, start: -0.001610, bitrate: 2037 kb/s
       Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p, 1280x534 [SAR 1:1 DAR 640:267], 1075 kb/s, 23.91 fps, 23.98 tbr, 90k tbn, 47.95 tbc (default)
       Metadata:
         creation_time   : 2017-08-24T19:43:26.000000Z
         handler_name    : Core Media Video
       Stream #0:1(und): Audio: aac (LC) (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 126 kb/s (default)
       Metadata:
         creation_time   : 2017-08-24T19:43:26.000000Z
         handler_name    : Core Media Audio
    At least one output file must be specified

    The important bit from above is the negative start time :

    Duration: 00:00:03.25, start: -0.001610, bitrate: 2037 kb/s

    When I play this video in Chrome and Firefox, both browsers report a duration of 5.72 secs. When I use Safari, the browser reports a duration of 3.24 sec.

    Do you know of a way of having consistent duration and start time values across browsers ?

  • aarch64 : Fix negative movrel offsets for windows

    9 juillet 2017, par Martin Storsjö
    aarch64 : Fix negative movrel offsets for windows
    

    On windows, the offset for the relocation doesn’t get stored in
    the relocation itself, but as an unsigned immediate in the opcode.
    Therefore, negative offsets has to be handled via a separate sub
    instruction, just as on MachO.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavutil/aarch64/asm.S
  • avcodec/aacdec_fixed : fix : left shift of negative value -1

    23 juillet 2017, par Michael Niedermayer
    avcodec/aacdec_fixed : fix : left shift of negative value -1
    

    Fixes : 2699/clusterfuzz-testcase-minimized-5631303862976512

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/aacdec_fixed.c