Recherche avancée

Médias (0)

Mot : - Tags -/serveur

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

Autres articles (4)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (2271)

  • How to input canvas buffer to fluent-ffmpeg

    29 octobre 2022, par Lol

    Hi i have a function which return.

    


    canvas.toBuffer('image/png');


    


    In my index.js file how i can input image to ffmpeg.

    


    const ffmpeg = require('./ffmpeg');
const generateImage = require('./contentimage.js');

const myfact = "This is my fact"

async function generateVideo() {
  ffmpeg()
    .input(await generateImage(myfact))
    .input('./input.mp3')
    .audioCodec('libmp3lame')
    .videoCodec('libx264')
    .save('./video.mp4');
}

generateVideo();


    


    I am using the above code but it is showing invalid input at 8:8

    


  • CLI : Avoid redundant 16-bit upconversions in piped raw input

    20 décembre 2013, par Henrik Gramner
    CLI : Avoid redundant 16-bit upconversions in piped raw input
    

    It’s not possible to seek in pipes, so if we want to skip frames we have to read and
    discard unused ones. It’s pointless to do bit-depth upconversions in those frames.

    • [DH] input/raw.c
    • [DH] input/y4m.c
  • how to give [Y/N] input during execution of ffmpeg

    6 juin 2016, par Jatin Bhola

    I want to execute an ffmpeg concat command on my PHP script. The command when run on CMD asks for yes/no input. How can i set that input to yes by default ?