Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (63)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • avcodec/h263dec : Fixed VA API, VDPAU, and VideoToolbox hardware acceleration due...

    29 avril 2019, par fumoboy007
    avcodec/h263dec : Fixed VA API, VDPAU, and VideoToolbox hardware acceleration due to missing `hw_configs` property.
    

    Bug originally introduced in commit 758fbc54fef2f31957b5c5f22e05e5fd9b04f631.

    • [DH] libavcodec/h263dec.c
  • avcodec/mpeg4videodec : Sync sprite_warping_accuracy between threads

    12 octobre 2022, par Andreas Rheinhardt
    avcodec/mpeg4videodec : Sync sprite_warping_accuracy between threads
    

    It is set in the vol header and is therefore a sequence and
    not only a picture property.

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

    • [DH] libavcodec/mpeg4videodec.c
  • Text Watermarking on video without loss of audio and video quality

    8 janvier 2021, par Aditya Kumar

    I am using following command to add text watermark on a video file(for mp4, mpg,m4v,flv,mov etc..) :

    &#xA;

    ffmpeg -i input.mp4 -vf "drawtext=text=&#x27;Opentext&#x27;:x=(w-text_w)/2:y=(h-text_h)/2:fontsize=24:fontcolor=white" TextOutput.mp4&#xA;

    &#xA;

    For some of the file transformation the property of video file changes. for example- When I tried to add text watermark on a mkv file I got this message :

    &#xA;

    &#xA;

    [matroska @ 0000001867d36ec0] Non-monotonous DTS in output stream 0:1 ;&#xA;previous : 2273, current : 1596 ; changing to 2273. This may result in&#xA;incorrect timestamps in the output file.

    &#xA;

    &#xA;

    This is one of the issues, i have mentioned here. There are others as well, such as :

    &#xA;

      &#xA;
    • video quality is reduced
    • &#xA;

    • video file size is changed(increses/decreases drastically)
    • &#xA;

    • Audio lagging occurs etc...
    • &#xA;

    &#xA;

    So, I want to preserve the quality of video after adding the text watermark. How can I do that ?

    &#xA;