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

  • avcodec/aac_ac3_parser: don't try to sync when the parser is configured to handle...

    22 October 2022, by James Almer
    avcodec/aac_ac3_parser: don't try to sync when the parser is configured to handle complete frames
    

    Should speed up parsing when the frames come from non raw containers.

    Signed-off-by: James Almer <jamrial@gmail.com>

    • [DH] libavcodec/aac_ac3_parser.c
  • avformat/asfdec: Use a parser for mpeg4-asp to find has_b_frames

    3 June 2014, by Michael Niedermayer
    avformat/asfdec: Use a parser for mpeg4-asp to find has_b_frames
    

    Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/asfdec.c
  • Combining two ffmpeg commands into one command [closed]

    19 January 2024, by Tuan Le

    I want to combine two ffmpeg commands to single ffmpeg command (1. combine multiple photos into a video; 2. add music to the newly created video)

    &#xA;

    1&#xA;ffmpeg -r 0.1 -s 1080x1620 -i pictures/%03d.jpeg -vcodec libx264 -crf 25 video1.mp4

    &#xA;

    2&#xA;ffmpeg -i video1.mp4 -stream_loop -1 -i audio2.mp3 -map 0:v -map 1:a -c copy -shortest output.mp4

    &#xA;

    (Actually I have very little knowledge of ffmpeg so please excuse my foolishness)&#xA;Please help me with my issue

    &#xA;