Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (75)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (14855)

  • avcodec/mpegvideo_enc : Check FLV1 resolution limits

    8 janvier, par Michael Niedermayer
    avcodec/mpegvideo_enc : Check FLV1 resolution limits
    

    Found-by : Elias Myllymäki <elias.myllymaki04p@gmail.com>
    Reviewed-by : Alexander Strasser <eclipse7@gmx.net>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/mpegvideo_enc.c
  • Is Replacing Dynamic Resolution with scale_amf in FFmpeg Command a Good Direction ?

    21 novembre 2024, par fred

    I'm working on a Lua script for MPV that processes 360-degree videos using FFmpeg's v360 filter. The original command dynamically calculates the output resolution based on a res variable, like this :

    &#xA;

    mp.command_native_async({&#xA;    "no-osd", "vf", "add", &#xA;    string.format(&#xA;        "@vrrev:v360=%s:%s:reset_rot=1:in_stereo=%s:out_stereo=2d:&#xA;id_fov=%s:d_fov=%.3f:yaw=%.3f:pitch=%s:roll=%.3f:&#xA;w=%s*192.0:h=%.3f*108.0:h_flip=%s:interp=%s",&#xA;        in_flip, inputProjection, outputProjection, in_stereo, idfov, dfov, yaw, pitch, roll, res, res, h_flip, scaling&#xA;    )&#xA;}, updateComplete)&#xA;

    &#xA;

    Change Proposal :

    &#xA;

    I am considering replacing the dynamic width and height calculations with a scale_amf filter to handle scaling more efficiently and leverage GPU acceleration. The updated command would look like this :

    &#xA;

    mp.command_native_async({&#xA;    "no-osd", "vf", "add", &#xA;    string.format(&#xA;        "@vrrev:v360=%s:%s:reset_rot=1:in_stereo=%s:out_stereo=2d:&#xA;id_fov=%s:d_fov=%.3f:yaw=%.3f:pitch=%s:roll=%.3f,&#xA;%sscale_amf=w=%.0f:h=%.0f",&#xA;        inputProjection, outputProjection, in_stereo, idfov, dfov, yaw, pitch, roll, in_flip, res * 192.0, res * 108.0&#xA;    )&#xA;

    &#xA;

    Hardware Specifications :

    &#xA;

    I am using an AMD Ryzen 5 5600G, no display card, 16GB RAM, Windows 10.

    &#xA;

    Questions :

    &#xA;

    Is using scale_amf for scaling a good direction in terms of performance and efficiency ?&#xA;Are there any potential drawbacks to this approach that I should be aware of ?&#xA;How does using scale_amf compare to the original dynamic resolution method in terms of output quality and processing speed ?&#xA;}, updateComplete)

    &#xA;

    Any insights or experiences with this change would be greatly appreciated !

    &#xA;

  • ffmpeg ignores input svg files resolution and produces 100x100 video [closed]

    11 novembre 2024, par Francesco Potortì

    I have used this command for some years to produce .ogg files (or any other format) from a series of .svg files on Linux :

    &#xA;

    ffmpeg -y -r 1.2 -i %06d.svg -qscale:v 10 path.ogg

    &#xA;

    It has worked flawlessly until now, when it produces a video with 100x100 resolution, rather then the 1920x1080 resolution of the input files.

    &#xA;

    If I force the output resolution to be 1920x1080 using the -s option, the resulting video is a magnified version of the 100x100 video output I obtain without the -s option. If I convert the svg files to png using inkscape everything is well, but I'd like to avoid making my workflow more complex.

    &#xA;

    Here you can find some of the .svg files.

    &#xA;

    Any ideas ?

    &#xA;