Recherche avancée

Médias (91)

Autres articles (41)

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

  • How to get thumbnail Image of video ( format MJPEG ) in java

    3 juin 2016, par Luna

    I stored videos in hard disk and stored their link in database, as I find this as a solution to stored video in database.
    Now I need retrieve thumbnail image of each video.so how can I get thumbnail image of video (MJPEG format) using ffmpeg in java..

    I don’t know maybe I cannot find the right keywords.

    PS : I am using Eclipse IDE and implement required interface in Java Swing

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