Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (89)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • avcodec/v4l2 : fix compile with older videodev2.h

    14 septembre 2019, par Aman Gupta
    avcodec/v4l2 : fix compile with older videodev2.h
    

    Some of these symbols are only defined in newer kernel releases.

    Signed-off-by : Aman Gupta <aman@tmm1.net>

    • [DH] libavcodec/v4l2_buffers.c
    • [DH] libavcodec/v4l2_m2m_enc.c
  • avfilter/showinfo : support Content Light Level information

    9 août 2019, par Limin Wang
    avfilter/showinfo : support Content Light Level information
    

    show real information instead of the unknown side data type message for HDR10 stream

    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/vf_showinfo.c
  • ffmpeg leaves audio gap when concatening videos [closed]

    21 mars 2024, par Rafael

    I am trying to cut a video in 2 parts then reassembling with ffmpeg but the final output has a small audio glitch right where the segments meet. I am using the following command to split the video 1.mp4 in 2 parts :

    &#xA;&#xA;

    &#xA;

    ffmpeg -i 1.mp4 -ss 00:00:00 -t 00:00:02 -async 1 1-1.mp4

    &#xA;

    &#xA;&#xA;

    and

    &#xA;&#xA;

    &#xA;

    ffmpeg -i 1.mp4 -ss 00:00:02 -t 00:00:02 -async 1 1-2.mp4

    &#xA;

    &#xA;&#xA;

    Once I have the 2 parts I am concatening them back together with :

    &#xA;&#xA;

    &#xA;

    ffmpeg -f concat -i files.txt -c copy output.mp4

    &#xA;

    &#xA;&#xA;

    files.txt is correctly listing both files. Can anyone point me to where the problem might be ?

    &#xA;&#xA;

    Thanks

    &#xA;