Recherche avancée

Médias (91)

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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 (...)

Sur d’autres sites (9816)

  • rtpdec : Don’t free the payload context in the .free function

    24 février 2015, par Martin Storsjö
    rtpdec : Don’t free the payload context in the .free function
    

    This makes it more consistent with depacketizers that don’t have any
    .free function at all, where the payload context is freed by the
    surrounding framework. Always free the context in the surrounding
    framework, having the individual depacketizers only free any data
    they’ve specifically allocated themselves.

    This is similar to how this works for demuxer/muxers/codecs - a
    component shouldn’t free the priv_data that the framework has
    allocated for it.

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

    • [DH] libavformat/rdt.c
    • [DH] libavformat/rtpdec.h
    • [DH] libavformat/rtpdec_ac3.c
    • [DH] libavformat/rtpdec_dv.c
    • [DH] libavformat/rtpdec_h261.c
    • [DH] libavformat/rtpdec_h263_rfc2190.c
    • [DH] libavformat/rtpdec_h264.c
    • [DH] libavformat/rtpdec_jpeg.c
    • [DH] libavformat/rtpdec_latm.c
    • [DH] libavformat/rtpdec_mpa_robust.c
    • [DH] libavformat/rtpdec_mpeg4.c
    • [DH] libavformat/rtpdec_mpegts.c
    • [DH] libavformat/rtpdec_qt.c
    • [DH] libavformat/rtpdec_svq3.c
    • [DH] libavformat/rtpdec_vp8.c
    • [DH] libavformat/rtpdec_xiph.c
    • [DH] libavformat/rtsp.c
  • avcodec/cfhd, cfhddata : Simplify check for escape

    3 septembre 2022, par Andreas Rheinhardt
    avcodec/cfhd, cfhddata : Simplify check for escape
    

    cfhd.c checked for level being equal to a certain codebook-
    dependent constant and to run being two. The first check is
    actually redundant, as all codebooks contain only one (real)
    entry with run == 2 (as is usual with VLCs, this one real entry
    has several corresponding entries in the table). But given
    that no entry has a run of zero (except incomplete entries
    which just signal that one needs to do another round of parsing),
    one can actually use that as sentinel. This patch does so.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/cfhd.c
    • [DH] libavcodec/cfhddata.c
  • Escape special characters in FFmpeg subtitle filename

    15 janvier 2024, par forthrin

    If your subtitle file name is "Hi, y'all.srt", how do you escape this properly for FFmpeg ? The comma works escaped with backslash, but I can't get the quote to work no matter what tricks I try !

    &#xA;&#xA;

    $ ffmpeg -vf subtitles="Hi\, y\\\&#x27;all.srt" -t 1 -f null -&#xA;&#xA;ffmpeg version 3.3.3 Copyright (c) 2000-2017 the FFmpeg developers&#xA;  built with Apple LLVM version 8.1.0 (clang-802.0.42)&#xA;  configuration: --prefix=/usr/local/Cellar/ffmpeg/3.3.3 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-ffplay --enable-libass --enable-libmp3lame --enable-libx264 --enable-libx265 --enable-libxvid --enable-opencl --enable-videotoolbox --disable-lzma --enable-vda&#xA;  libavutil      55. 58.100 / 55. 58.100&#xA;  libavcodec     57. 89.100 / 57. 89.100&#xA;  libavformat    57. 71.100 / 57. 71.100&#xA;  libavdevice    57.  6.100 / 57.  6.100&#xA;  libavfilter     6. 82.100 /  6. 82.100&#xA;  libavresample   3.  5.  0 /  3.  5.  0&#xA;  libswscale      4.  6.100 /  4.  6.100&#xA;  libswresample   2.  7.100 /  2.  7.100&#xA;  libpostproc    54.  5.100 / 54.  5.100&#xA;[Parsed_subtitles_0 @ 0x7fba7af36080] Shaper: FriBidi 0.19.7 (SIMPLE) HarfBuzz-ng 1.4.8 (COMPLEX)&#xA;[Parsed_subtitles_0 @ 0x7fba7af36080] Unable to open Hi, yall.srt&#xA;[AVFilterGraph @ 0x7fba7ad05d60] Error initializing filter &#x27;subtitles&#x27; with args &#x27;Hi, y\all.srt&#x27;&#xA;Error reinitializing filters!&#xA;Failed to inject frame into filter network: No such file or directory&#xA;Error while processing the decoded data for stream #0:0&#xA;Conversion failed!&#xA;

    &#xA;