Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (94)

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

  • 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

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

  • electronicarts : demux alpha stream

    25 juin 2015, par Peter Ross
    electronicarts : demux alpha stream
    

    Electronic Arts VP6 files may contain two video streams : one for the
    primary video stream and another for the alpha mask. The file format
    uses identical data structures for both streams.

    Signed-off-by : Peter Ross <pross@xvid.org>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/electronicarts.c
  • avcodec/ac3enc : Don't presume ch_layout to be AV_CHANNEL_ORDER_NATIVE

    7 avril 2024, par Andreas Rheinhardt
    avcodec/ac3enc : Don't presume ch_layout to be AV_CHANNEL_ORDER_NATIVE
    

    It is perfectly legal for users to use a custom layout
    that is equivalent to a supported native one.
    In this case the union in AVChannelLayout is not an uint64_t mask,
    but a pointer to a custom map.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/ac3enc.c
  • ffmpeg with partial motion detection

    2 mars 2021, par Silentfury

    I have video files from a static surveillance camera and I try to re-encode them using some sort of motion detection filter (keeping the movements, droping the stills) in order to save space and play time.

    &#xA;

    I have successfully tried the two below filter options but it still feels not good enough. :

    &#xA;

      &#xA;
    • mpdecimate e.g. -vf "mpdecimate=hi=6480:lo=6420:frac=0.1,setpts=N/(15*TB)"
    • &#xA;

    • select (e.g. -vf "select=gt(scene,0.4)")
    • &#xA;

    &#xA;

    The main problem is a moving bush in the camera view, that I would like to exclude from the motion detection.

    &#xA;

    Is there other/better ways of applying motion detection (and stills dropping) to ffmpeg ?&#xA;Is there any way to mask areas of the video that will be ignored in the above mentioned (or any other) motion detection filter/method ?

    &#xA;

    Many thanks in advance !

    &#xA;

    Edit :&#xA;in the mean time I found this excellent answer from Gyan

    &#xA;

    I am testing this now but would still appreciate other ideas

    &#xA;