Recherche avancée

Médias (91)

Autres articles (19)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (3653)

  • configure : Add additional glslang libraries to make linking work

    18 août 2020, par Philip Langdale
    configure : Add additional glslang libraries to make linking work
    

    The latest builds of glslang introduce new libraries that need to be
    linked for all symbols to be fully resolved.

    This change will break building against older installations of glslang
    and it's very hard to tell them apart as the library change upstream
    was not accompanied by any version bump and no official release has
    been made with this change it - just lots of people packaging up git
    snapshots. So, apologies in advance.

    • [DH] configure
  • define ffmpeg binaries path dynamically in php depending on OS

    15 mars 2019, par Hue Man

    I’m trying to define the ffmpeg binaries path dynamically in php depending on OS...

    Here’s my code :

    // Check if OS is Windows
    if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
    $OS = 'win';
    // 'This is a server using Windows!';
    }

    require ABSPATH . '/vendor/autoload.php';

    if($OS == 'win')
    {
       $ffmpegpath = ABSPATH . 'FFMpeg/bin/ffmpeg.exe';
       $ffprobepath = ABSPATH . 'FFMpeg/bin/ffprobe.exe';
    }

    $ffmpeg = FFMpeg\FFMpeg::create(array(
    'ffmpeg.binaries' => $ffmpegpath,
    'ffprobe.binaries' => $ffprobepath,
    'timeout' => 3600, // The timeout for the underlying process
    'ffmpeg.threads' => 12, // The number of threads that FFMpeg should use
    ));

    For some reason it doesn’t work.

    If I hard code the same paths within the ffmpeg construct function it does work.

    Any ideas ?

    Thanks.

  • mlpdec : Do not set invalid context in read_restart_header

    10 juillet 2013, par Luca Barbato
    mlpdec : Do not set invalid context in read_restart_header
    

    The faulty values rippled further down the codepath causing a
    hard-to-track segfault in the assembly code.

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org

    • [DBH] libavcodec/mlpdec.c