Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (104)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

Sur d’autres sites (9164)

  • FFMPEG Video Encode Single Input Multi Output

    1er août 2014, par ShyamKG

    I have a custom video encoder filter which can produce upto 5 different bitrates for the same resolution.

    Note that single instance of the encoder is optimized for producing these multiple outputs. Every encode call returns 5 output buffers.
    This means that I would not want to run more than one encoder instance.

    I need to integrate this encoder to FFMPEG which should give multiple outputs for a single input. I have referred the following link regarding creating multiple outputs.
    https://trac.ffmpeg.org/wiki/Creating%20multiple%20outputs

    In this link multiple outputs are created by running multiple encoder instances which is not my requirement.

    Is there any way by which we can configure ffmpeg to give multiple output for one encoder instance ?

  • FFmpeg MSVC Compilation stuck

    10 mai 2017, par Earinor

    For several days now I try to build the FFmpeg Libraries. I’m using Windows7 64 Bit and MSVC2010. I followed this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/MSVC

    I got rid of a view errors and configure is working finally. But when I try make, it runs for like half an hour and then gets stuck. It won’t proceed, I kept it running over night and nothing happend. I also tried different compiler options but it gets stuck every time at the same point.

    ffv1dec.o_converted.c
    d:\cpplibraries\ffmpeg-master\libavcodec\get_bits.h(308) : warning C4101: 're_cache' : unreferenced local variable
    d:\cpplibraries\ffmpeg-master\libavcodec\golomb.h(360) : warning C4245: '=' : conversion from 'int' to 'unsigned int', signed/unsigned mismatch

    I also tried setting up a minGW64 Msys2 Environment but have the same issue there.
    I also tried another setup but when I get rid of some errors I always get stuck at the exact same position.

    The cl.exe is running and is using memory but nothing happens.

    I also get a ton of warnings like conversions from int to unsigned int, Makro redefinitions, etc.

    I have no idea where to look to fix this, so I would appreciate some help.

  • Compiling custom FFMPEG for mp3/wav to flac conversion

    3 décembre 2019, par Arttu

    I need to compile ffmpeg from source for CentOS. The goal it to convert MP3 and WAV to FLAC. I tried to compile ffmpeg with this guide : https://trac.ffmpeg.org/wiki/CompilationGuide/Centos
    and it worked fine, but took approximately 20min and compiled a bunch unnecessary things, even thought I did not used next options as recommended in guide, but used :

    PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure \
    --prefix="/opt/tmg/ffmpeg_build" \
    --pkg-config-flags="--static" \
    --extra-cflags="-I/opt/tmg/ffmpeg_build/include" \
    --extra-ldflags="-L/opt/tmg/ffmpeg_build/lib" \
    --extra-libs=-lpthread \
    --extra-libs=-lm \
    --bindir="/opt/tmg/ffmpeg_build/bin" \
    --enable-gpl \
    --enable-libfreetype

    My question is what do I need for MP3 and WAV to FLAC and how do I compile just that part ?

    I found in configuration --disable-all option, but what do I have to enable ?

    Thanks in advance.