Recherche avancée

Médias (91)

Autres articles (37)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

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

Sur d’autres sites (6089)

  • How to reduce bit rate of an audio file using ffmpeg in java

    26 mars 2015, par Mehandi Hassan

    How to reduce bit rate of an audio file using ffmpeg in java

    I am not able to pass more then 4 argument in process builder.

    Here the code for video and i want audio.

    ProcessBuilder pb = new ProcessBuilder(
                               "ffmpeg",
                               "-i",
                               "C:/Users/Amit/Videos/Wildlife.wmv",
                               "C:/Users/Amit/Videos/Wildlife12.avi");
  • Cannot read xvid video with opencv in python on mac

    15 février 2017, par crazjo

    I have been trying for hours to read a xvid .avi file on my mac with python 2.7 and opencv. I have installed all the latest versions using brew and opencv is working in python and I can open images and other movie files but when I try to read a xvid avi file with

    cap.cv2.VideoCapture('video.AVI')
    ret, frame = cap.read()

    It fails as frame is empty. I have installed ffmpeg with brew and x264 as well and ran brew doctor. I am totally lost what to do now. Happy to provide more information if needed. I hope someone can help me, thanks.

  • How to pass commands to an application from python

    3 avril 2015, par shre

    I am trying to run ffmpeg application from python.I am using the following code to execute the application

    import subprocess
    subprocess.call([’C :/ffmpeg/bin/ffmpeg.exe’])

    by this command the application is getting executed. could somebody tell me how can i pass commands to the application, i tried

    subprocess.call([’C :/ffmpeg/bin/ffmpeg.exe’,’ffmpeg -i 2.mp4 -vn -ab 128 outputaudio.mp3’])

    but its not working.