Recherche avancée

Médias (91)

Autres articles (44)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (4879)

  • Simple ffmpeg program has memory leaks

    31 mai 2015, par Peter

    Environment : Ubuntu 14.04

    I compiled the simple source code from ffmpeg tutorial step 1 at http://dranger.com/ffmpeg/tutorial01.html. When I run the binary through valgrind, it reports a bunch of memory leaks. Here is one example :

    ==30270== 389,824 bytes in 1 blocks are possibly lost in loss record 8 of 8
    ==30270==    at 0x4C2D110: memalign (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
    ==30270==    by 0x4C2D227: posix_memalign (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
    ==30270==    by 0x9AEDAD: av_malloc (mem.c:81)
    ==30270==    by 0x9AEEFD: av_mallocz (mem.c:207)
    ==30270==    by 0x74E70F: avcodec_get_context_defaults3 (options.c:102)i
    ==30270==    by 0x74E775: avcodec_alloc_context3 (options.c:130)
    ==30270==    by 0x449737: main (test1.cpp:106)

    Here is the snippet from test1.cpp at line 106 :

    pCodecCtx = avcodec_alloc_context3(pCodec);
    if(avcodec_copy_context(pCodecCtx, pCodecCtxOrig) != 0) {
       fprintf(stderr, "Couldn't copy codec context");
       return -1; // Error copying codec context
    }

    Before the main function returns, it does close the contexts :

    avcodec_close(pCodecCtx);
    avcodec_close(pCodecCtxOrig);
    ...
    return 0;

    Is there something else that need to be done to ensure proper memory release ?

    For those interested, the source file can be downloaded from the link I mentioned. Regards.

  • A simple linux on-the-fly video transcoding service via http?

    27 novembre 2019, par Goat Karma

    I’m looking for a simple-to-implement Linux plugin/package/software that can take a large source video from a particular URL, transcode it to a set size and present it to user over http.

    The use case is, we store large(4GB) original MP4 videos in a source system. We want to make these available through universal viewer to end users. The source mp4 files are accessible via URLs (i.e http://example.com/get/video/4747737). Instead of pointing the universal viewer at the 4GB video, we want to point it at an intermediary service (http://example/transcode/4747737?size=720 or whatever) which would transcode the 4GB video into something with a bit more web-friendly size/resolution/bitrate.

    We have ffmpeg already installed, and saw ffserver which is no longer supported. There are various web service wrappers for ffmpeg and I believe ffmpeg has an http service built in,but I can’t decipher whether that is what we need !

    We have PHP available on the web server if there’s a nice easy wrapper to implement(I guess i could call shell_exec for ffmpeg and push the output ?), but I’d probably prefer something pre-packaged to some extent (i.e a debian package, or java jar/war that can run on a port and be proxied).

    Any suggestions ?

  • Simplified the README's "Simple Example"

    22 octobre 2013, par JamesMGreene
    Simplified the README's "Simple Example"