Recherche avancée

Médias (91)

Autres articles (34)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

Sur d’autres sites (2394)

  • Movie thubnail generate

    10 mai 2014, par user3123906

    I wana write script to generate thubnail image from video like .mp4 and my generate image shuld look like this sample http://screenshots.de.sftcdn.net/de/scrn/79000/79347/video-thumbnails-maker-22.jpg but i dont known what i must use. I try ffmpeg but its only generate each frame image like image1.jpg image2.jpg etc but i need generete all in one img. Any sugestion ?

  • Why ffmpeg-split AVI movie freezes when played

    29 septembre 2015, par bl4ck5un

    I used ffmpeg to split AVI movies like

    ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:22:33 -to 1:2:3 out.avi

    But the output file out.avi is sometimes weird when played (in MPlayerX, for example) — it will stop at the first frame, freezing like a picture, but if I drag the process bar forward, then continue playing at a different place, everything would be fine and the video just goes on smoothly.

    I have limited knowledge on AVI format and ffmpeg, can you guys point out what’s the problem here ? If it’s a matter of kerFrame or what ?

  • faster way to concatenate movie clips using moviepy ?

    1er avril 2019, par Abhishek Agarwal

    By using Moviepy library i found a better way for making clips

    clip_1 = ffmpeg_extract_subclip(filename,
                          t1, t2,
                          targetname="test1.mp4")

    rather than using VideoFileClip function

    clip1 = VideoFileClip("test1.mp4")

    However i was thinking if we could combine 2 or more video files with such a speed difference using any other methods other than

    final_clip = CompositeVideoClip([clip1,clip2])

    or remove the print functionality of the module to speed up the process ??