Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (86)

  • 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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (5608)

  • ffmpeg Installation Error Through Homebrew

    19 décembre 2022, par Bob Bob

    I was looking to download ffmpeg to convert some mp4/mp3 files in python but was met with an error I could not find the solution for elsewhere.

    


    When attempting to install ffmpeg on terminal, I was met by this error.

    


    fatal: Could not resolve HEAD to a revision Warning: No available formula with the name "ffmpeg". ==> Searching for similarly named formulae... Error: No similarly named formulae found. ==> Searching for a previously deleted formula (in the last month)... Error: No previously deleted formula found. ==> Searching taps on GitHub... Error: No formulae found in taps.

    


    I was expecting everything to work perfectly but obviously it hasn't. I looked into other users that had similar errors and went through what they did to solve their problems but was not able get anything to work out.

    


  • Anomalie #2542 : forum interne

    8 mars 2012, par Ben .

    confirmé : forum.log ::::::::::::: : Mar 08 16:50:23 127.0.0.1 (pid 5299) :Pri:ERREUR : /home/ben/www/spip-3.0/extensions/forum/inc/forum_insert.php_59Erreur insertion forum sur objet=’’, id_objet=

  • ffmpeg fluent 'Error initializing complex filters'

    15 février 2018, par Ricky

    I am trying to create a complex filter based on the images the user has chosen in the app however ffmpeg fluent is outputting

    "ffmpeg exited with code 1 : Error initializing complex filters."

    This is the code in question :

    let streamYT = (YTrtmp) => {
     let L = logosInUse.length
     let location = logoHorizontal + ":" + logoHeight
     let scale = imgScale

     let formula = null
     let accr = altTime*2
     let accr2 = accr
     for(var i=0; i<(L + 1); i++) {
         if(i === 1){
             formula = "["+ i +"]scale="+ scale+"[ovrl" + i +"], [v"+ (i - 1) +"][ovrl" + i + "] overlay=" + location +":enable='lt(mod(t,"+ (L * altTime)+"),"+ altTime+")'[v"+i+"];"
         }
         if(i === 2){
             formula = formula + "["+ i +"]scale="+ scale+"[ovrl" + i +"], [v"+ (i - 1) +"][ovrl" + i + "] overlay=" + location +":enable='between(mod(t,"+ (L * altTime)+"),"+ altTime+","+accr+")'[v"+i+"];"
         }
         if(i === 3){
             formula = formula + "["+ i +"]scale="+ scale+"[ovrl" + i +"], [v"+ (i - 1) +"][ovrl" + i + "] overlay=" + location +":enable='gt(mod(t,"+ (L * altTime)+"),"+ accr +")'[v"+i+"];"
         }
         if(i > 3){
             accr2 = accr2 + altTime
             formula = formula + "["+ i +"]scale="+ scale+"[ovrl" + i +"], [v"+ (i - 1) +"][ovrl" + i + "] overlay=" + location +":enable='gt(mod(t,"+ (L * altTime)+"),"+ accr2 +")'[v"+i+"];"
         }
     }
     if(formula !==  null){
       formula = formula.slice(0, -5)
       }
     let listOfLogos = ''
     for(n in logosInUse){
     listOfLogos = listOfLogos + ".input('./public/images/" + logosInUse[n] + ")"
     }

     console.log("streaming to youtube")
     var proc3 = new ffmpeg({ source: inputURL, timeout: 0 })
       .addOption('-vcodec', 'libx264')
       .addOption('-acodec', 'aac')
       // .addOption('-crf', 26)
       .addOption('-f', 'flv')
       // .addOption('-vf', "scale=" +  resolution)
       .complexFilter('"' + formula + '"')
       .on('start', function(commandLine) {
       console.log('Query : ' + commandLine);
       })
       .on('error', function(err) {
       console.log('Error: ' + err.message);
       })
       .output('rtmp://a.rtmp.youtube.com/live2/' + YTrtmp, function(stdout, stderr) {
         console.log('Convert complete' +stdout)
       })

       for(n in logosInUse){
         proc3 = proc3.input('./public/images/' + logosInUse[n])
         }
       // proc3 =  proc3.input("./public/images/red.jpg")
       proc3.run()
     }

    formula outputs

    [1]scale=40:40[ovrl1], [v0][ovrl1]
    overlay=580:10:enable='lt(mod(t,40),10)'[v1];[2]scale=40:40[ovrl2], [v1]
    [ovrl2] overlay=580:10:enable='between(mod(t,40),10,20)'[v2];
    [3]scale=40:40[ovrl3], [v2][ovrl3]
    overlay=580:10:enable='gt(mod(t,40),20)'[v3];[4]scale=40:40[ovrl4], [v3]
    [ovrl4] overlay=580:10:enable='gt(mod(t,40),30)'[v4];

    and the query outputs

    ffmpeg -i https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8 -i
    ./public/images/crunchy.png -i ./public/images/logo2.jpg -i
    ./public/images/red.jpg -i ./public/images/ACE.png -filter_complex "
    [1]scale=40:40[ovrl1], [v0][ovrl1]
    overlay=580:10:enable='lt(mod(t,40),10)'[v1];[2]scale=40:40[ovrl2], [v1]
    [ovrl2] overlay=580:10:enable='between(mod(t,40),10,20)'[v2];
    [3]scale=40:40[ovrl3], [v2][ovrl3]
    overlay=580:10:enable='gt(mod(t,40),20)'[v3];[4]scale=40:40[ovrl4], [v3]
    [ovrl4] overlay=580:10:enable='gt(mod(t,40),30)'" -vcodec libx264 -acodec
    aac -f flv rtmp://a.rtmp.youtube.com/live2/2222-2222-2222-2222

    Which runs fine when I plug it into my console directly. Can’t understand where I am going wrong here.