Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (101)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (7643)

  • How to make WebM video file seekable using ffmpeg while keeping video format same ? [closed]

    4 janvier 2023, par Alok

    I downlaod video using chrome extension in WebM format but these videos are not seekable (meaning the seekbar does not work as expected).

    


    What I've tried :

    


    I have used a tool called MKclean, which can fix it by using this command :

    


    mkclean --doctype 4 --keep-cues --optimize original.webm optimized.webm


    


    How can I achieve this same result by using ffmpeg so I can make my WebM videos seekable ?

    


  • Revision 6e5e75fa21 : Revert "Removing redundant variables from variance_test.cc." This reverts commi

    8 mai 2014, par James Zern

    Changed Paths :
     Modify /test/variance_test.cc



    Revert "Removing redundant variables from variance_test.cc."

    This reverts commit 4725ab7e51a69bf890856e524c6d78aadd97d64e.

    The constants are necessary to avoid breakage in vs9 builds :
    warning C4180 : qualifier applied to function type has no meaning ; ignored
    error C2436 : ’f2_’ : member function or nested class in constructor initializer
    list
    while compiling class template member function
    ’std::tr1::tuple::tuple(const int &,const int
    &,unsigned int (__cdecl &))’
    ..\test\variance_test.cc : see reference to class template instantiation
    ’std::tr1::tuple’ being compiled

    Change-Id : Ia218b74fc473d40f02fee84cb7009adfbe82e5a7

  • Capturing frames from an h264 stream with gst/ffmpeg

    17 août 2016, par Yuval.Sightec

    I want to save (as jpegs) or reach the data of the frames streaming from my usb camera.
    Meaning that I want to use the h.264 hardware encoding (I running it on nvdia jetson) in order to get a sequence of compressed files (I prefer not save it on the disc and get an array, if possible).
    Can I do that ?

    So far I tried this :

    gst-launch-1.0 -v v4l2src device=/dev/video0 ! video/x-h264,framerate=30/1,stream-format=byte-stream ! decodebin ! videorate ! video/x-raw,framerate=30/1 ! videoconvert ! jpegenc ! multifilesink location=img_%04d.jpg

    but I get an internal data flow error from v4l2src0 element, and an error from gst_base_src_loop() after the pipeline was set to PLAYING.

    Can anybody please help me ?

    b.t.w- It doesnt have to be neccecerly h.264 encoding, it also can be mpeg encoding or something else : I want to use the fact that it is pictures of a video, frames, in order to get smaller size frames.

    Thank you so much !