Recherche avancée

Médias (91)

Autres articles (96)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

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

Sur d’autres sites (6056)

  • avcodec/roqvideodec : Move transient GetByteContext to the stack

    30 août 2020, par Andreas Rheinhardt
    avcodec/roqvideodec : Move transient GetByteContext to the stack
    

    This avoids keeping potentially dangling pointers in the context,
    beautifies the code (by replacing "&ri->gb" by gb for every access to
    the GetByteContext) and also highlights the GetByteContext's short-lived
    nature better.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/roqvideo.h
    • [DH] libavcodec/roqvideodec.c
  • avformat/rtsp : move SDP_MAX_SIZE macro definition to header file

    11 novembre 2020, par Limin Wang
    avformat/rtsp : move SDP_MAX_SIZE macro definition to header file
    

    move comments for the size of SDP_MAX_SIZE here :
    Some SDP lines, particularly for Realmedia or ASF RTSP streams,
    contain long SDP lines containing complete ASF Headers (several
    kB) or arrays of MDPR (RM stream descriptor) headers plus
    "rulebooks" describing their properties. Therefore, the SDP line
    buffer is large.
    The Vorbis FMTP line can be up to 16KB - see xiph_parse_sdp_line
    in rtpdec_xiph.c.

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

    • [DH] libavformat/rtsp.c
    • [DH] libavformat/rtsp.h
    • [DH] libavformat/rtspenc.c
  • Move overlay left to right with specific overlay starting position

    3 décembre 2020, par k0ngoz

    The command below moves image left to right, starting from outside the frame on the left side, with opacity on the image.

    &#xA;

    ffmpeg -i test.mp4 -i bar.png -filter_complex "[1:v]format=argb,geq=r=&#x27;r(X,Y)&#x27;:a=&#x27;0.5*alpha(X,Y)&#x27;[zork];[0:v][zork]overlay=x=&#x27;if(lte(-w&#x2B;(t)*100,100),-w&#x2B;(t)*100,100)&#x27;:y=0" output.mp4&#xA;

    &#xA;

    What I need, is to have the image being full-screen in the beginning of the video, and then slowly moving towards the right side, never completely exiting the frame up right up until the point where the video finishes(image still fullscreen as video ends).

    &#xA;

    So the tempo has to vary based on the video length, for the image not to exit the frame at neither the start or finishing point.

    &#xA;