Recherche avancée

Médias (0)

Mot : - Tags -/masques

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (95)

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

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

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

  • Generate video compression artifacts

    27 février 2018, par Grzegorzg

    I have one video and I need to get some copies that video with different artifacts :

    1 instance with Blocking

    1 instance with Ringing

    1 instance with Blurring

    1 instance with Color Bleeding

    1 instance with Staircase noise

    Is it possible to generate those artifacts ?

    All I found only "-bsf noise=15000" in ffmpeg, but i’m getting corrupted video with all mentioned artifacts, but i need to get 1 video = only 1 type of artifacts.

  • avfilter/vf_subtitles : pass storage size to libass

    14 mars 2022, par Oneric
    avfilter/vf_subtitles : pass storage size to libass
    

    Due to a quirk of the ASS format some tags depend on the exact storage
    resolution of the video, so tell libass via ass_set_storage_size.

    Reviewed-by : Soft Works <softworkz@hotmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavfilter/vf_subtitles.c
  • Save incoming frames from camera to video using ffmpeg

    12 avril 2024, par Liza Yemini

    I'm trying to record frames that I read from an industrial camera (such as - https://en.ids-imaging.com/store/u3-3680xle.html) in my C# code as bitmaps.&#xA;I want to convert those bitmaps to video on the fly.

    &#xA;

    My solution until now was -> Sending those bitmaps to a virtual camera (e2e soft vcam) and then record the camera with ffmpeg - using this command :

    &#xA;

    -f dshow -i video=VCam -r 18 -vcodec libx264 Video.mp4&#xA;

    &#xA;

    This is not working so well, because there are drop frames and the video is not smooth.

    &#xA;

    There is another way to use ffmpeg for converting those images to video on the flight ?

    &#xA;

    Thank you !

    &#xA;