Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (85)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

Sur d’autres sites (9467)

  • libavformat/rtpdec_opus : Set duration field on Opus AVPacket

    12 mai, par Jonathan Baudanza
    libavformat/rtpdec_opus : Set duration field on Opus AVPacket
    

    This commit will properly set the duration field of Opus AVPackets.
    Currently, duration is set to 0 on Opus packets from the RTP demuxer.

    The Ogg muxer depends on the duration field to properly compute the page granule
    value. Without a proper duration, the granule will be wrong, and result in
    negative pts values in ogg files.

    See oggenc.c:657 (ogg_write_packet_internal)

    This commit calculates using the opus_duration function, which was copied
    from oggparseopus.c

    I moved this functionality and the existing opus extradata functionality
    (added by me in 6c24f2b) into a new rtpdec_opus.c file.

    Reviewed-by : Tristan Matthews <tmatth@videolan.org>
    Signed-off-by : Marvin Scholz <epirat07@gmail.com>

    • [DH] libavformat/Makefile
    • [DH] libavformat/rtpdec.c
    • [DH] libavformat/rtpdec_formats.h
    • [DH] libavformat/rtpdec_opus.c
  • avcodec/ituh263enc : Don't use h263_plus field

    21 mai, par Andreas Rheinhardt
    avcodec/ituh263enc : Don't use h263_plus field
    

    It is equal to codec_id == AV_CODEC_ID_H263P, check for that instead.

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

    • [DH] libavcodec/ituh263enc.c
    • [DH] libavcodec/mpegvideo_enc.c
  • Create video with size based on image and place a video somewhere with an offset

    10 mars 2024, par NoKey

    I am trying out FFMPEG and I am unsure how hard it is to do what I want. I have some device frames and I want to play a video inside the frame. For example, this is a device frame :

    &#xA;

    enter image description here

    &#xA;

    Now I want to play a video within the screen of the iPhone. I already got the exact X and Y offset where the video must be placed to show it correctly. I have the following challenges to make it work, and I want to make sure FFMPEG can do it before I spend to much time reinventing the wheel :

    &#xA;

      &#xA;
    • The output of the video must be as big as the PNG. This is already a&#xA;confusing part for me. I have the width and height already available,&#xA;but the things I saw is that FFMPEG will take over the input of the&#xA;video as final size. The final output of the video should of course&#xA;be the length of the input video.

      &#xA;

    • &#xA;

    • The background must be transparant (so no black background, I want to&#xA;play the video on top of a website so it's nice if it's transparant and the corners are not black).

      &#xA;

    • &#xA;

    • The ability to place a video somewhere with a specified X and Y&#xA;offset inside the device frame.

      &#xA;

    • &#xA;

    • Not sure if it's possible in the same command, but maybe the video&#xA;needs to be resized to make it fit. I got the exact dimensions for&#xA;the video.

      &#xA;

    • &#xA;

    &#xA;

    The things I struggle most is point 1 where the output video must have a transparant background and where the device frame is placed in. Does anybody got tips ?

    &#xA;