Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (63)

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

  • avformat/movenc : use more fall-back values for average bit rate fields

    20 septembre 2020, par Jan Ekström
    avformat/movenc : use more fall-back values for average bit rate fields
    

    If the average bit rate cannot be calculated, such as in the case
    of streamed fragmented mp4, utilize various available parameters
    in priority order.

    Tests are updated where the esds or btrt or ISML manifest boxes'
    output changes.

    • [DH] libavformat/movenc.c
    • [DH] tests/ref/lavf/ismv
  • Generate frame images from video and compile them back to the video in-memory

    24 septembre 2020, par gumkins

    I have to remove some repeating frames from the beginning of a video file.

    


    For that I'm generating frame images from the video

    


    ffmpeg -i input.mp4 -qscale:v 2 frame_%04d.jpg

    


    This command generates a set of files with index in name. Then I'm analyzing frames against some criteria programmaticaly, removing useless ones and compiling the rest back to the video file

    


    ffmpeg -r 60 -start_number 0 -i "frame_%04d.jpg" -c:v libx264 -vf "fps=25,format=yuv420p" out.mp4

    


    What I don't like in this schema that IO operations take part in the process. I would like to generate an array of buffers with binary data, then process it with Javascript and then pipe filtered ones back to ffmpeg without using the file system.

    


    Does ffmpeg have such possibility ?

    


  • avformat/mpjpegdec : make sure we seek back to the ensured buffer

    26 septembre 2020, par Marton Balint
    avformat/mpjpegdec : make sure we seek back to the ensured buffer
    

    It was possible for the old code to seek back before the most recently read
    data if start of a new multipart was across read boundaries. Now we read some
    small sections multiple times to avoid this, but that is OK.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mpjpegdec.c