Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (6)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

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

Sur d’autres sites (2313)

  • avcodec/h264 : Seperate SEI and IDR recovery handling

    2 octobre 2023, par Michael Niedermayer
    avcodec/h264 : Seperate SEI and IDR recovery handling
    

    This avoids SEI and IDR recovery flags affecting each other

    Also eliminate litteral numbers from recovery handling
    This should make the code clearer

    Improves : tickets/4738/tickets_cut.ts

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/h264_refs.c
    • [DH] libavcodec/h264_slice.c
  • Anomalie #4452 : Notice : A non well formed numeric value encountered à partir de php 7.1

    25 juin 2020

    J’ai commité une version adaptée de pclzip.php du spip_loader. Il faudra up sur le serveur spip.net je pense.
    https://git.spip.net/spip-contrib-outils/spip_loader/commit/0e93074c8

  • How can I record a rectangle centered around the mouse cursor when it last moved

    28 décembre 2022, par Vesoripi

    I would like an ffmpeg incantation that will do A, or B, or C where

    &#xA;

    A is…&#xA;The ffmpeg incantation will record a rectangle that is centered around the caret (the "text cursor") when text is being typed.

    &#xA;

    B is…&#xA;The ffmpeg incantation will record a rectangle that is centered around the mouse cursor when the mouse cursor is actually moving or when the mouse cursor had been moving less than, say, 2 seconds ago.

    &#xA;

    C is…&#xA;The ffmpeg incantation will stop recording video, yet continue to record audio, if the mouse cursor had not been moving for 2 seconds or longer and the caret (the "text cursor") had not been moving for 2 seconds or longer.

    &#xA;

    On Linux Mint 21.1 Cinnamon, although both of the following incantations…

    &#xA;

    ffmpeg -f x11grab -follow_mouse centered -framerate 25 -video_size cif -i :0.0 -preset slow output.mkv&#xA;

    &#xA;

    and

    &#xA;

    ffmpeg -f x11grab -follow_mouse centered -show_region 1 -framerate 25 -video_size cif -i :0.0 -c:v libx264 -crf 0 -preset slow output.mp4&#xA;

    &#xA;

    successfully record the mouse cursor as I would like, obviously both incantations fail to record the caret (the "text cursor") when text is being typed.

    &#xA;

    Here’s my use case…

    &#xA;

    As a form of documentation, I intend to create screencasts of my coding sessions which I will narrate. I realize that this unusual form of documentation would normally result in large video files. Therefore, instead of recording the entire screen, I would like to record a small rectangle around either the area where I am typing text or—when I am using my mouse—around the area my mouse cursor is located. As a result I hope to create video files which take up less storage space, yet are still useful to me.

    &#xA;

    For example, I hope that when I review my coding sessions I will be able to quickly be reminded that, for example, "Oh, yeah, that's what I was thinking when I wrote that line of code. Yes. Now I remember : I was stuck, then went to Stackoverflow, did some research, and found solution XYZ to solve my problem.”

    &#xA;

    In other words, I won’t exclusively be coding during my coding sessions ; sometimes I will be doing research on, for example, Stackoverflow. When I am doing research on—for example, Stackoverflow—I want my mouse cursor recorded.

    &#xA;

    For your information, follow_mouse at 3.21.1 Options.

    &#xA;