Recherche avancée

Médias (3)

Mot : - Tags -/psd

Autres articles (10)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

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

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (3873)

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