Recherche avancée

Médias (91)

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

    5 mars 2010, par

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

Sur d’autres sites (10221)

  • matroskadec : parse the channel layout mask for FLAC

    26 mai 2014, par Anton Khirnov
    matroskadec : parse the channel layout mask for FLAC
    

    It is commonly stored in a vorbiscomment block in codec private data.

    • [DBH] libavformat/Makefile
    • [DBH] libavformat/flacdec.c
    • [DBH] libavformat/matroskadec.c
    • [DBH] libavformat/oggdec.h
    • [DBH] libavformat/oggparsecelt.c
    • [DBH] libavformat/oggparseflac.c
    • [DBH] libavformat/oggparseogm.c
    • [DBH] libavformat/oggparseopus.c
    • [DBH] libavformat/oggparsespeex.c
    • [DBH] libavformat/oggparsetheora.c
    • [DBH] libavformat/oggparsevorbis.c
  • h264_direct : use the reference mask from the actual reference

    2 août 2016, par Anton Khirnov
    h264_direct : use the reference mask from the actual reference
    

    Not from the underlying frame. Fixes races with frame threading in
    field-coded files, where decoding would wait for the wrong field (e.g.
    random failures in mixed-nal-coding).

    Bug-Id : 954

    • [DBH] libavcodec/h264_direct.c
  • problem in concatenating mass online video urls using ffmpeg [duplicate]

    25 mai 2021, par JohnTerry

    I want to concat n number of videos together using ffmpeg which can also have more than one codec or different resolutions.
I know how to do it with fixed number of videos but input_videos.txt can contain any unknown number of videos. I checked relative posts but they did not have a solution for my problem.

    


    the command i am using for concatenating videos is -

    


    cmd = "ffmpeg -safe 0 -f concat -protocol_whitelist file,http,https,tcp,tls,crypto -segment_time_metadata 1 -i {} -vf select=concatdec_select,scale=1280:720 -af aselect=concatdec_select,aresample=async=1 -c:v libvpx-vp9 -deadline good -cpu-used 5 -c:a libopus {}".format(input_videos.txt, output_video.webm)


    


    Is there a way to achieve the functionality i want ?