Recherche avancée

Médias (0)

Mot : - Tags -/flash

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

Autres articles (44)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6832)

  • Can't find ffmpeg.exe [on hold]

    31 juillet 2017, par Eldar Azulay

    I want to use ffmpeg for my c# program, so I downloaded it from their website here : https://www.ffmpeg.org/download.html by clicking on the big green button, but in this archive there’s no exe, which I need to run so I can use it.
    This is that I see when opening the file I downloaded :
    enter image description here

    I just want to know how can I get the ffmpeg.exe file.

  • How to use FFMPEG for Mac Apps

    9 avril 2015, par Andy Hin

    I’m building a Mac App that requires some features from FFMPEG. I want to package FFMPEG and distribute it along with my app such that it is not a dependency for the end user.

    I went here http://www.ffmpeg.org/download.html#build-mac and downloaded the 64-bit static binary. I extracted it using p7zip and I now have these 2 files : https://www.dropbox.com/s/r0frvxdpsr7jfti/Screenshot%202015-04-09%2012.28.25.png?dl=0

    How do I include the library in my xcode project ? How do I call the FFMPEG functions ?

    Any help appreciated.

  • Zip an audio file In NodeJS with archiver in fly

    31 juillet 2018, par dnp1204

    I use node-youtube-dl to have a stream to download a video and I want to convert it to mp3 using fluent-ffmmpeg. I also want to zip this mp3 audio to send to the client to download it but I cannot figure how to zip the mp3 audio. I find every corner of StackOverflow but I did not find any solution. Please help me ! Thanks

    const stream = youtubedl(url);
    const videoTitle = await youtube.getVideoTitle(url);
    const converter = new ffmpeg({ source: stream });
    const zip = archiver('zip');

    // This does not work since converter.toFormat('mp3') is not a stream
    zip.append(converter.toFormat('mp3'), {
     name: `${videoTitle}.${toFormat}`
    });
    zip.finalize();

    I really appreciate if you can help me ! Thanks again