Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (95)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6065)

  • 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
  • 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
  • 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 ?