Recherche avancée

Médias (0)

Mot : - Tags -/navigation

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

Autres articles (56)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (11010)

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