Advanced search

Medias (3)

Tag: - Tags -/plugin

Other articles (111)

  • MediaSPIP 0.1 Beta version

    25 April 2011, by

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • HTML5 audio and video support

    13 April 2011, by

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 March 2010, by

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3); le plugin champs extras v2 nécessité par (...)

On other websites (15509)

  • ffmpeg: gif to mp4 - combining commands

    3 November 2022, by Paul Browne

    I'm converting a gif ( recorded at 1 frame per second) to an mp4 using these 3 commands:

    


    ffmpeg -i input.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2,fps=10" temp.mp4
ffmpeg -i temp.mp4 -map 0:v -c:v copy -bsf:v h264_mp4toannexb raw.h264
ffmpeg -fflags +genpts -r 200 -i raw.h264 -c:v copy output.mp4


    


      

    • 1st command converts gif to mp4 and increases fps to 10
    • 


    • 2nd command converts mp4 to raw.h264
    • 


    • 3rd command converts raw.h264 back to mp4 and increases the fps
    • 


    


    Is there a way to combine some of these commands... So take the gif @1fps and output mp4 at 60fps?

    


  • tools/target_dec_fuzzer: Also optionally fuzz with a parser

    23 June 2018, by Michael Niedermayer
    tools/target_dec_fuzzer: Also optionally fuzz with a parser
    

    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tools/target_dec_fuzzer.c
  • avcodec/hevc_parser: fix split function of parser

    1 September 2015, by Rainer Hochecker
    avcodec/hevc_parser: fix split function of parser
    

    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/hevc_parser.c