Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (46)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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

Sur d’autres sites (7285)

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

  • Evolution #4798 : Suppression des mises à jour de BDD SPIP 3.0 (ou 3.1 ?)

    25 mai 2021

    D’après https://core.spip.net/projects/spip/wiki/WikiStart#Anciennes-versions

    Et le fait que le premier numéro de https://git.spip.net/spip/spip/src/branch/master/ecrire/maj/legacy/svn10000.php est le 10990 (1.9.2d = 11132), on pourrait conserver pour la 4.0 la migration probablement depuis 1.9.2d. Sans que ça soit très gênant pour le moment.

    Mais même, le fichier maj/v019.php a la nouvelle écriture, et commence en 1931 (1.7.0 = 2414)...
    On pourrait même conserver depuis 1.7.0.

    Mais le veut-on vraiment ?
    On peut conserver « à partir de 2.0.0 » (13469), pourquoi pas ? ou toute version au dessus…
    Ou à partir de 1.9.2 ou 1.8… ou je ne sais pas…

    Bref… pour moi tant qu’on vire les maj/vxxx.php antérieurs à l’ancien formalisme, déjà ça me va.

    Mais indépendamment de ça, conserver ad-vitam les trucs, ça a pas forcément trop de sens quand même.

  • issue with ffmpeg config

    4 janvier 2015, par ali raha

    a ffmpeg was installed in my server but it no support some liberary like libvpx
    (centos 6.5)
    I couldn’t uninstall it but I install I new one with this tutorial :
    http://wiki.razuna.com/display/ecp/FFMpeg+Installation+on+CentOS+and+RedHat#FFMpegInstallationonCentOSandRedHat-InstallLibvpx

    (all configs in ffmpeg seems install correctly)

    PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig"
    export PKG_CONFIG_PATH
    ./configure --prefix="$HOME/ffmpeg_build" --extra-cflags="-I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" --bindir="$HOME/bin" \
    --extra-libs=-ldl --enable-version3 --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libvpx --enable-libfaac \
    --enable-libmp3lame --enable-libtheora --enable-libvorbis --enable-libx264 --enable-libvo-aacenc --enable-libxvid --disable-ffplay \
    --enable-gpl --enable-postproc --enable-nonfree --enable-avfilter --enable-pthreads

    So I want to test it :

    I try test it with :

    #ffmpeg

    result :

    enter image description here

    It seems related with older ffmpeg that was install.
    no change and no lib add !