Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (87)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (12512)

  • video created by moviepy doesn't play on web

    18 février 2016, par R. Glenn

    I’m playing around with moviepy, with the intent of creating videos to imbed in webpages. However, I’m having trouble getting the videos that I create to actually play in chrome and firefox (it does play in safari :/ ).
    Firefox claims the "file is corrupt".

    I find it extremely likely I haven’t installed something properly. I followed (among other things, since I’m not yet authorized to post enough links so as to fully describe my situation, #thanksStackOverflow ;P) http://wiki.webmproject.org/ffmpeg/building-with-libvpx, but according to [link I would have shared if allowed :P] that stuff is all "automatically installed during MoviePy’s installation", so I’m not sure how I could have messed it up.

    see example code (I’ve tried it with ’python’, ’python3’ and ’python3.5’) :

    from moviepy.editor import *

    filepath = "../read_videos/MOVI0011.avi"
    file = VideoFileClip(filepath)

    clips = []
    clips.append(file.subclip(10, 12))
    clips.append(file.subclip(20, 22))
    clips.append(file.subclip(30, 32))
    clips.append(file.subclip(40, 42))

    concatenated_clip = concatenate_videoclips(clips)

    concatenated_clip.write_videofile("../write_videos/clip.mp4", fps=24, codec='mpeg4')

    firefox error

    OSX El Capitan (10.11.3)

  • How play AVI with sound by OpenCV on Win32

    4 janvier 2015, par Andrei Shumilov

    I need play AVI by OpenCV and any sound player (vfw/ffmpeg...) on Win32. It seems to me this is very secret or useless thing ’cos I found only one sample in the world : Audio output with video processing with opencv

    Mr. Karl Phillip wrote there :
    "On my Mac I compiled it with :
    g++ ffmpeg_snd.cpp -o ffmpeg_snd -D_GNU_SOURCE=1 -D_THREAD_SAFE -I/usr/local/include/opencv -I/usr/local/include -I/usr/local/include/SDL -Wl,-framework,Cocoa ...."

    But I must use MSVS2010 (I have working project). Ok, I installed mingw to try, but still don’t know what could replace "framework,Cocoa".

    Give me please links to WORKING examples OpenCV+anysoundplayer on Win32 or help me port Karl’s example at least.

  • I am converting wmv to mp4 file using ffmpeg but it doest play on html5 video tag

    22 novembre 2013, par user3017170

    I am using version of ffmpeg 1.2.3 in php . It successfully converts the video to mp4 which i can play using flv player but when i add this video to html5 video tag it doest work properly.

    The Command is

    shell_exec("/usr/bin/ffmpeg -i /var/www/html/vid/upload/inputfile.wmv -s 500x400 -strict -2  /var/www/html/vid/mp4videos/outputfile.mp4 2>&1");

    HTML CODE

    <video width="100%" height="100%" controls="controls"><source src="mp4videos/outputfile.mp4" type="video/mp4"></source></video>