Recherche avancée

Médias (1)

Mot : - Tags -/géodiversité

Autres articles (36)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Show video while saving it

    13 septembre 2022, par Mohamed Adel El-Badry

    I have a folder full of images, I need to save these images into the video while doing so I want to show the user the video being played from these images (frames). I can run two separate processes one for the saving and one for the showing but this is not what I am looking for, I want to do both in one step. If you know a solution please let me know.

    


    My code uses C++ with OpenCV but feel free to share with me any code written with any language, or event a concept.

    


    I use gStreamer, ffmpeg as well for the video generation, so I am not looking how to save a video or how to show the video I am looking for a process that can do both in one operation.

    


  • Creating a animated transiton effect slide show in FFmpeg

    19 janvier 2016, par ajay

    I am creating a slide show in FFMPEg with Images and one audio.
    The slide show created and playaing as per following cmd Command.

    ffmpeg   -f image2 -framerate 1 -loop 1 -i image%d.png -i audio.wav -s 1200x750 -t 00:00:30   foo.avi

    I need the Transition effect in the slide show so please help us.

  • avcodec/utvideodec/enc : Fix edge case of creating Huffman table

    24 septembre 2020, par Andreas Rheinhardt
    avcodec/utvideodec/enc : Fix edge case of creating Huffman table
    

    The Ut Video format stores Huffman tables in its bitstream by coding
    the length of a given symbol ; it does not code the actual code directly,
    instead this is to be inferred by the rule that a symbol is to the left
    of every shorter symbol in the Huffman tree and that for symbols of the
    same length the symbol is descending from left to right. With one
    exception, this is also what our de- and encoder did.

    The exception only matters when there are codes of length 32, because
    in this case the first symbol of this length did not get the code 0,
    but 1 ; this is tantamount to pretending that there is a (nonexistent)
    leaf of length 32. This is simply false. The reference software agrees
    with this [1].

    [1] : https://github.com/umezawatakeshi/utvideo/blob/2700a471a78402e5c340150b38e8a793ef3676f1/utv_core/HuffmanCode.cpp#L280

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/utvideodec.c
    • [DH] libavcodec/utvideoenc.c