Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (25)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

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

Sur d’autres sites (3905)

  • Adds ESPCN super resolution filter merged with SRCNN filter.

    13 juin 2018, par Sergey Lavrushkin
    Adds ESPCN super resolution filter merged with SRCNN filter.
    

    Signed-off-by : Pedro Arthur <bygrandao@gmail.com>

    • [DH] configure
    • [DH] libavfilter/Makefile
    • [DH] libavfilter/allfilters.c
    • [DH] libavfilter/dnn_backend_native.c
    • [DH] libavfilter/dnn_backend_tf.c
    • [DH] libavfilter/dnn_espcn.h
    • [DH] libavfilter/dnn_interface.h
    • [DH] libavfilter/dnn_srcnn.h
    • [DH] libavfilter/vf_sr.c
    • [DH] libavfilter/vf_srcnn.c
  • Why ffmpeg takes so long time to decode 1 frame from high resolution gif

    29 août 2018, par Yueh-Ming Chien

    I am working on gif to png decode. My command is like :

    ffmpeg -probesize 20M -y -i "GIF_High resolution_4952x7000.gif" -y
    -frames:v 1 %03d.png

    Input : gif (4952x7000)

    Output : png

    And here’s output result :
    enter image description here

    It takes about 13 seconds.
    If I use python to call subprocess.Popen() to execute it, it causes UI to hang.
    And I found something weird in Process Monitor :
    enter image description here

    It stuck in process profiling for a long time. I don’t know why. Can anyone help ? I’ll appreciate that.

  • FFmpeg - Change resolution of the video with aspect ratio

    18 septembre 2024, par Arthur

    all.

    &#xA;&#xA;

    How to change resolution of the video with aspect ratio with FFmpeg ?

    &#xA;&#xA;

    There are options &#xA;http://manpages.ubuntu.com/manpages/oneiric/man1/ffmpeg.1.html

    &#xA;&#xA;

           -s size&#xA;       Set frame size. The format is wxh (ffserver default = 160x128,&#xA;       ffmpeg default = same as source).  The following abbreviations are&#xA;       recognized:&#xA;

    &#xA;&#xA;

    and

    &#xA;&#xA;

           -aspect aspect&#xA;       Set the video display aspect ratio specified by aspect.&#xA;&#xA;       aspect can be a floating point number string, or a string of the&#xA;       form num:den, where num and den are the numerator and denominator&#xA;       of the aspect ratio. For example "4:3", "16:9", "1.3333", and&#xA;       "1.7777" are valid argument values.&#xA;

    &#xA;&#xA;

    For example, I have two input videos :

    &#xA;&#xA;

      &#xA;
    • with 200*400 resolution
    • &#xA;

    • with 400*700 resolution
    • &#xA;

    &#xA;&#xA;

    I need to make output video with 100*200 resolution.

    &#xA;&#xA;

    If I will run ffmpeg with -s 100x200, then second video will have bad aspect ratio.

    &#xA;&#xA;

    How can I limit output video by width, with auto aspect ratio by height ?

    &#xA;&#xA;

    For example, I want specify for the output video only width 100px and ffmpeg must automatically calculate height with right aspect ratio.

    &#xA;&#xA;

    For first video it will be :

    &#xA;&#xA;

    200/100=2

    &#xA;&#xA;

    400/2=200

    &#xA;&#xA;

    Ie 100x200

    &#xA;&#xA;

    For second video it will be :

    &#xA;&#xA;

    400/100=4

    &#xA;&#xA;

    700/4=75

    &#xA;&#xA;

    Ie 100x75

    &#xA;&#xA;

    Is it possible ?

    &#xA;