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 equal segment times using ffmpeg ?

    13 décembre 2015, par Abhay Cn

    I used the following command to split a video into segments :

    ffmpeg -i inputfile -c copy -map 0 -segment_time 5 -f segment outputfile

    But I got varying segment times ie. some segments were 5s, some were 2s and others were 8s. How do I correct this ?

  • Pydub of Python doesn't work-Probably ffmpeg installed wrongfully

    1er janvier 2016, par bnounis

    I have recently downloaded and installed Pydub but it doesn’t work.

    I installed it with pip and then downloaded and installed ffmpeg. Whenever I try to import the library or write a simple code, I get this error message :

    RuntimeWarning : Couldn’t find ffmpeg or avconv - defaulting to ffmpeg,
    but may not work .

    Could someone explain to me what I’ve been doing wrong ??

    What is the problem with ffmpeg ?

  • Can I run ffmpeg from my Python code and return a signal when it's done compressing ?

    7 février 2016, par xavier

    Seems that what I am looking for ( a simple ffmpeg interface for python ) is not available for python 3.5. I want to run a commandline from my code that I will fill with variables like :

    video_file = "/path/to/video/video.file"
    sound_file = "/path/to/sound/sound.file"
    output_name= (video.file + 'mp4')
    fmpeg -loop 1 -i video_file -i sound_file -c:v libx264 -tune stillimage -c:a aac -strict experimental -b:a 192k -pix_fmt yuv420p -shortest output_name

    Is it possible to return a signal to trigger the next function that would use output_name as value to do next thing ? Is this even possible ¿ ?