Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (10802)

  • Batch process all files in folder with ffmpeg ?

    19 novembre 2019, par Aron

    I am trying to create a loop that will process all .mp4 (gopro clips) in a folder, and output each converted file with the same filename as the original + the _r suffix. I puzzled together the below from various sources but can’t get it to work.

    for i in *.mp4; do ffmpeg -i "$i" -vf "hflip,vflip" "${i%.*}_r.mp4"; done

    Running the above gives the following error.

    *.mp4: No such file or directory

    What have I done wrong ?

    Yes, I am in the correct directory, and there are .mp4 files in in place.
    Ffmpeg is installed and runs correctly.
    Working in Mac terminal.

  • How to get FFmpeg to run on a video on phones SD card ?

    27 octobre 2019, par Spikekyn

    So I’m developing an app that uses FFmpeg to apply LUT’s to video. Im having trouble understanding how I would get FFmpeg to run the command that I gave it and exporting the video to a file on the phone. If anyone has any good sources of information that would help me I would appreciate it.

  • nodejs FFMPEG add multiple inputs not working

    23 octobre 2019, par HUNG
    var ffmpeg = require('fluent-ffmpeg');
    var proc =
    ffmpeg()
    .input('./_animation/overlay1_%04d.png')
    .inputFPS(20)
    .input('./_animation/overlay2_%04d.png')
    .inputFPS(20)
    .input('./_animation/static1.png').inputFPS(1)
    .input('./_animation/static2.png').inputFPS(1)
    .outputFPS(20)
    .save('./public/_ugc/' + new Date() + '.mp4');

    I would like to create a video which combining from 4 sources, i.e. overlay1 sequences, overlay2 sequences and two static images. However, it is now always shows only one of the sources only. How to combine them in each of the frame ?

    And since the sources are not in the same dimension, is it possible to set the x,y coordinate for the sources ?