Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (85)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9868)

  • ffmpeg - How to convert images with exif data ?

    16 août 2015, par hongducwb

    My command :

    for %%a in (".") do ffmpeg -i "%%a" -q:v 3 -quality 100 "newfiles\%% na.jpg"
    pause

    But my converted images, it doesn’t have exif data... my command wrong ? Thank

    Original jpg - exif data
    http://i.stack.imgur.com/ir0bm.jpg

  • ffmpeg - reading meta data value every 16ms to produce overlay

    18 avril 2022, par bcardarella

    I'd like to combine a few data sources for telemetry overlays over a video. The MP4s have some metadata embedded from my GoPro but I have a few other data sources I'd like to include. I already have a way to generate a PNG of the data visualizations. What I am wondering if is ffmpeg includes a way to, every 16ms to take the current video frame, get the corresponding metadata values for that frame embedded within the mp4, send them off to the image creator, take that output and overlay over the video frame.

    


    My assumption is that the mp4 metadata will correspond to the frame of the video. In that video frame's metadata the GPX values that I will need to generate the visualization.

    


  • fluent-ffmpeg for getting codec data only

    15 février 2018, par agonza1

    I am using a fluent-ffmpeg node module for getting codec data from a file.
    It works if I give an output but I was wandering if there is any option to run fluent-ffmpeg without giving to it an output.
    This is what I am doing :

                   readStream.end(new Buffer(file.buffer));
                   var process = new ffmpeg(readStream);

                   process.on('start', function() {
                     console.log('Spawned ffmpeg');
                   }).on('codecData', function(data) {
                     //get recording duration
                     const duration = data.duration;
                     console.log(duration)
                   }).save('temp.flac');

    As you can see I am saving a the file to temp.flac so I can get the seconds duration of a file