Recherche avancée

Médias (91)

Autres articles (51)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

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

Sur d’autres sites (5567)

  • How to plot animated time series in R ?

    28 août 2016, par pOrlando

    I am trying use the ’animation’ package in R to plot an animated time series.

    My dataset consists of a time vector and a value vector, each with 1800 rows.

    I keep getting an error message after running the loop which reads :

    Error in jpeg(gname[i]) : unable to start jpeg() device
    In addition: Warning messages:
    1: In jpeg(gname[i]) : unable to open file 'g11:30:00.jpg' for writing
    2: In jpeg(gname[i]) : opening device failed

    Here’s the source code

    timemax<-1800
    setwd("~/Documents/Animation/")
    graphdata<-read.csv("filling_line_data_construction_v2.csv")
    attach(graphdata)
    gname<-paste("g",time, ".jpg", sep="")
    for (i in 1:timemax){
       jpeg(gname[i])
       plot(time[1],value[1],type="l",ylim=c(0,35), xlim=c(0,100),
         ylim = c(0, 35),ylab = "", xlab="time")
       lines(time[1:i],value[1:i])
       dev.off(dev.cur())
    }

    The end goal is to string together these 1800 plots as a stop animation video by calling the ffmpeg shell :

    shell("C:/ffmpeg/bin/ffmpeg.exe -report -i g%d.jpg -b:v 2048k fillin_lineR.mpg",mustWork=FALSE)

    This is code that I’ve been trying to adapt from http://www.animatedgraphs.co.uk/LondonR.html#slide-30, but this example uses a .tif file instead of .jpg, and my computer gives me 1800 error messages when trying to make a video from .tif files...

    Thanks in advance !

  • fluent ffmpeg progress.percent return undefined

    26 décembre 2020, par Farrel Athaillah
    let ffmpeg = require("fluent-ffmpeg")
ffmpeg.setFfmpegPath(pathToFfmpeg)     

    var command = ffmpeg(file)

    command.on('end', function() {
        return console.log("done");
    });

    command.on('error', function(err) {
        return console.log(err);
    });

    command.on('progress', function(progress) {
        console.log('Processing: ' + progress.percent + '% done');
      });

    command.save(output+filename+sel);


    


    somehow it return

    


    Processing : undefined% done

    


    Processing : undefined% done

    


    Processing : undefined% done

    


    why ? i followed the fluent-ffmpeg docs

    


  • How can I install ffmpeg in google colab and encode my Google drive videos ?

    7 mai 2022, par Simba

    I tried to use this colab notebook, but I think it doesn't work anymore.
I have no idea about how to code, if anyone has a working notebook for ffmpeg in colab please share it with me.