Recherche avancée

Médias (91)

Autres articles (84)

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (8072)

  • is there any way to change still images to video in php on windows plate form [on hold]

    13 juin 2014, par user3548569

    I have a scenario for creating a video files using different images.

    What can I do is, basically I have images and I want create a video file using PHP.

    Can any one please suggest the start up point for this ? Have done image capture from video and converting the video using Ffmpeg so I have think of Ffmpeg but, I think it will not allow to create a video.

    i need to develop a movie with more then 5 pic. If i added images , then php convert it to movies or video. is there any toll to convert images to video in php on windows ???
    thanks

  • FFMpeg Can't find libvorbis under Windows

    27 février 2014, par Water Lin

    I try to use FFMpeg to generate MKV video format. By default, FFMpeg will using h264 & libvorbis. But when I using the doc/examples/muxing.c under ffmpeg source file folder, there is always an error :

    [libvorbis @ 002e52a0] Specified sample format s16 is invalid or not supported
    Could not open audio codec: Error number -22 occurred

    I used Zeranoe FFmpeg and showed this error. I also tried to compile the ffmpeg from source under MinGW, and I also enable the libvorbis by following comfiguration :

    $ ./configure --prefix=/mingw --enable-libvpx --enable-libvorbis --enable-shared --enable-static

    Before I make, I also install libvorbis, libogg, yasm etc. But the error is still there.

    If I use the ffmpeg.exe to convert video to webm format, it works. The command is like following :

    ffmpeg -i test.h264 -vcodec libvpx -acodec libvorbis output.webm

    The generated output.webm can be played by Firefox or something else. So I think the compiled ffmpeg library is OK. But why I can't generate webm file in muxing.c code ?

  • Ffmpeg headers do not compile in windows

    30 mai 2013, par Srv19

    I am trying to link to ffmpeg under windows, but have run into difficulties. Inclusion of ffmpeg headers causes hundreds of compilation errors which i can't easily fix.

    1) timestamp.h uses snprintf instead of _snprintf. I have tried to add it as a macro, like this :

    #ifdef Q_OS_WIN
    #define snprintf _snprintf
    #endif

    #define __STDC_CONSTANT_MACROS
    namespace ffmpeg {
    extern "C" {
    #include <libavutil></libavutil>imgutils.h>
    #include <libavutil></libavutil>samplefmt.h>
    #include <libavutil></libavutil>timestamp.h>
    #include <libavformat></libavformat>avformat.h>
    #include <libswscale></libswscale>swscale.h>
    } }

    but it didn't help. Why would the macro not propagate inside ?

    2) There again, PRId64 isn't defined. I have defined __STDC_CONSTANT_MACROS before inclusion of timestamp.h, but definition isn't retrieved from inttypes.h

    In compiler output, it looks like :

    ffmpeg\include\libavutil/timestamp.h(42) : error C3861: &#39;snprintf&#39;: identifier not found

    ffmpeg\include\libavutil/timestamp.h(42) : error C2146: syntax error : missing &#39;)&#39; before

    identifier 'PRId64'