Recherche avancée

Médias (91)

Autres articles (98)

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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

  • ffmpeg : create video from images [duplicate]

    22 juillet 2021, par zuluk

    I am trying to create a video from my images on my Windows 10. The images are named lu_1.jpg, lu_2.jpg and so on up to 1000. Now I tried this code in a .bat file to get the video :

    


    ffmpeg -framerate 1 -i lu-%d.jpg -c:v libx264 -r 30 ../lu_output.mp4


    


    Unfortunately I get the following error from cmd :

    


    lu-v: No such file or directory


    


    The .bat file is placed in the same folder as the images.

    


    Could someoene please tell me how to solve this issue ? Thanks in advance.

    


  • Combine an image into audio file and make a video file in android programmatically

    20 mars 2015, par jagdish

    I read the tutorial of ffmpeg libray to combine the image into audio file.but is more complex and getting error environment value is null.I googled a lot but didn’t found any solution.

    Is there any way in android we can merge an image in audio file and make a video file.

    Thanks in advance....

  • Add underlay audio to and audio at a specific time

    18 octobre 2018, par Yusuf Adeyemo

    Good day, I’m wonder if there is a way to add an audio as an underlay to another audio with FFmpeg at a specific time, more like a podcast advert sounds while the podcast is going on.
    Here is what I’ve tried so far

    ffmpeg -i audio.mp3 -i background.mp3 -filter_complex "[0:a]volume=1dB[a0];[1:a]volume=0.5[a1];[a0][a1]amerge=inputs=2[a]" -map "[a]" -ac 1 -ab 32000 -ar 22050 -strict -2 -y 10 audio_with_backgroud.mp3

    Thank you in advance