Recherche avancée

Médias (1)

Mot : - Tags -/sintel

Autres articles (46)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (6543)

  • Create a slide show from images in a folder [on hold]

    26 juillet 2017, par randommman

    So i have a folder with images like so :

    1.png
    2.png
    3.png
    .. etc

    I am trying to generate a slideshow video from the videos, i have the following code :

           string ffmpegPath = "ffmpeg.exe";
           string ffmpegParams = "-y - r " + mimtime + " -i " + Images + "- c:v libx264 -r 15 - pix_fmt yuv420p -vf fps = 90 " + Video;

           Process ffmpeg = new Process();
           ffmpeg.StartInfo.FileName = "cmd.exe";
           ffmpeg.StartInfo.Arguments = "/k " + ffmpegPath + " " + ffmpegParams;
           ffmpeg.Start();

    But this is giving me permision denied, because I think I need to add the individual images. How can I get the individuall images to generate a video ?

  • Revision cdc954fdc8 : skip the un-necessary motion search in the first pass This patch allows the VP9

    16 juin 2014, par Pengchong Jin

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c



    skip the un-necessary motion search in the first pass

    This patch allows the VP9 encoder to skip the un-necessary
    motion search in the first pass. It computes the motion error
    of 0,0 motion using the last source frame as the reference,
    and skips the further motion search if this error is small.

    Borg test shows overall the patch gives PSNR gain (derf -0.001%,
    yt 0.341%, hd 0.282%). Individual clips may have PSNR gain or
    loss. The best PSNR performance is 7.347% and the worst is -0.662%.
    The first pass encoding speedup for slideshow clips is over 30%.

    Change-Id : I4cac4dbd911f277ee858e161f3ca652c771344fe

  • avformat/segment : fix increment_tc

    14 juin 2019, par Gyan Doshi
    avformat/segment : fix increment_tc
    

    inner stream avg_frame_rate wasn't populated, so tc formation failed.

    Also, extended increment_tc to cover individual stream timecode.

    • [DH] libavformat/segment.c