Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (108)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

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

  • How can I concatenate two mp3 files with different bit rates

    31 décembre 2012, par Scott

    I have FFmpeg installed on my linux web server. When I execute the following code, I have intermittent results.

    I think I have figured out that the MP3s do not compile when they have different bitrates.

    exec ('cat '. $pair['source_file'] . ' ' . $pair['translated_word_file'] . '>' . $temp_mp3);

    I might have found some articles online that reference taking them apart and then bundling them back together at a consistent bitrates.

    I have confirmed that this won't really work with basic "cat" function and that "sox" can be used IF they have the same sample rate.

    The issue now becomes "What is the best way to get them to the same sample rate ?"

  • What is the best way to generate dynamic videos from template in php or laravel ? [closed]

    2 octobre 2024, par Jacopo944

    I was trying to find a way to generate videos from some templates with a mechanism similar to what happens with DOMpdf that allow to inject a blade, that can use dynamic variables to generate different content based on data, to generate a dynamic PDF that can store dynamic variables. I know that there is FFMPEG but it is not used directly to do so or maybe i don't understand how to do it. Is there someone that found a better way ? a simple and efficient way to accomplish that task ?

    


    i tried to find some resources online but there were very few answers to my problem.

    


  • Split Video Files Batch Mac

    11 août 2022, par dolomite41

    Noob Here. I have about 300 files that I want to split into segments. About 5 seconds each. I figured how to do it for one file, but is there anyway I can do it to the whole folder directory ? Been searching online and can't seem to find exactly what I need.

    


    here is what I did for the single file

    


    ffmpeg -i test2.mp4 -c copy -map 0 -segment_time 00:0:05 -f segment output%03d.mp4

    


    would like to do it for all the files at once

    


      

    1. Is there a batch command that can do it for all files
    2. 


    3. If not, is there a way I can put more than one command line into Terminal and run them all at once ?
    4. 


    


    OS - Mac - Monterey - FFMPEG and Brew installed

    


    Real noobie, any help would be appreciated