Recherche avancée

Médias (1)

Mot : - Tags -/3GS

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8691)

  • avcodec/8bps : Consider width in the minimal size check

    25 février 2024, par Michael Niedermayer
    avcodec/8bps : Consider width in the minimal size check
    

    Fixes : Timeout
    Fixes : 64479/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EIGHTBPS_fuzzer-5434435386081280

    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/8bps.c
  • minimal ffmpeg build without filters

    1er août 2020, par Andrew

    I'm trying to build a minimal version of ffmpeg that is as small as possible, with only support to decode AAC audio in an MP4 container, and write it out to PCM or WAV.

    &#xA;

    For some reason though, I can't find a way to build ffmpeg without it including all of these filters :

    &#xA;

    Enabled filters:&#xA;aformat                 atrim                   hflip                   transpose               vflip&#xA;anull                   format                  null                    trim&#xA;

    &#xA;

    Is there any way to disable these ?

    &#xA;

    I'm using this configure command :

    &#xA;

    ./configure \&#xA;        --disable-fast-unaligned \&#xA;        --disable-pthreads \&#xA;        --disable-w32threads \&#xA;        --disable-os2threads \&#xA;        --disable-debug \&#xA;        --disable-stripping \&#xA;        --disable-safe-bitstream-reader \&#xA;        --disable-all \&#xA;        --enable-ffmpeg \&#xA;        --enable-avcodec \&#xA;        --enable-avformat \&#xA;        --enable-avfilter \&#xA;        --disable-filters \&#xA;        --enable-protocol=pipe \&#xA;        --disable-swresample \&#xA;        --disable-swscale \&#xA;        --disable-network \&#xA;        --disable-d3d11va \&#xA;        --disable-dxva2 \&#xA;        --disable-vaapi \&#xA;        --disable-vdpau \&#xA;        --enable-protocol=file \&#xA;        --disable-bzlib \&#xA;        --disable-iconv \&#xA;        --disable-libxcb \&#xA;        --disable-lzma \&#xA;        --disable-sdl2 \&#xA;        --disable-securetransport \&#xA;        --disable-xlib \&#xA;        --disable-zlib \&#xA;        --enable-encoder=pcm_s16le \&#xA;        --enable-muxer=pcm_s16le,wav \&#xA;        --enable-demuxer=mov \&#xA;        --enable-libfdk-aac \&#xA;        --enable-nonfree \&#xA;        --enable-decoder=libfdk_aac&#xA;

    &#xA;

  • playing MPEG-dash streaming with FFMPEG

    24 mars 2016, par Thanh Nguyen

    I’m having a problem when playing MPEG-dash streaming with ffmpeg. I know there are a lot of tools can play MPEG-dash like OSMO4, DASH.js.. However, I am wondering if I can play MPEG-dash with FFMPEG ?
    And one more question, How can I determine startup time when playing MPEG-dash streaming ? It means, the duration time when I request a MPD file from a server until I get the first picture of video display on a screen ?
    Thanks !