Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (56)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (11936)

  • avcodec/adpcm_ms : support custom block size for encoding

    14 octobre 2020, par Zane van Iperen
    avcodec/adpcm_ms : support custom block size for encoding
    

    Fixes tickets #6585 and #7109

    Signed-off-by : Zane van Iperen <zane@zanevaniperen.com>

    • [DH] libavcodec/adpcmenc.c
  • Do ffmpeg create thumbnail download all of file via URL nodejs ?

    11 novembre 2019, par Nam Nguyễn

    I am creating a thumbnail from video URL by ffmpeg.

    This is my code :

    function createThumbnail(videoURL, keyFileThumb) {
       return new Promise((resolve, reject) => {
           let tmpFile = createWriteStream(`./${keyFileThumb}`)
           const ffmpeg = spawn(ffmpegPath, [
               '-ss',
               '00:00:01.000',
               '-i',
               videoURL,
               '-frames:v',
               '1',
               '-f',
               'image2',
               '-c:v',
               'mjpeg',
               'pipe:1'
           ])

           ffmpeg.stdout.pipe(tmpFile)

           ffmpeg.on('close', function (code) {
               tmpFile.end()
               resolve(code)
           })

           ffmpeg.on('error', function (err) {
               console.log(err)
               reject(err)
           })
       })
    }

    I just want to create thumbnail from stream video URL then disconnect. I do not want download all of file to generate thumbnail in few second of video.

  • Making changes on a video before a download [on hold]

    1er février 2016, par Chris Russo

    We have a website with lots of videos (>10,000) and lots of users (>50,000). Each video might be around 1,2 Gbs.

    The goal is to generate a unique video for each one of the members or users of the website making a small variation either on the audio track of the video, or the keyframes on the video itself, using low frequency beeps, or a few random pixels on specific keyframes.

    I understand that this operation can be done using SoX for the audio track, or FFmpeg in the case of the video, manipulating the keyframes.

    Here’s my question, as we have to choose between 2 options at this point :

    In terms of resources : would it be convenient or even possible to generate in real time a clone of the video and make this variations at the moment that the user’s request the download (please considerate the big volume of videos and users).

    Or it would be convenient to face this problem using HDD, pre-generating and storing the already manipulated videos ready to be served ?

    I understand that storing all this data will require a few many Tera’s but I’m not sure about how much RAM and Microprocessing could be demanded to perform this operations in real time, over videos that might be as big as 1Gbs.