Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (94)

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

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

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

  • aacenc_tns : redo coefficient quantization and decision making

    12 septembre 2015, par Rostislav Pehlivanov
    aacenc_tns : redo coefficient quantization and decision making
    

    This finally (and again) gets rid of basically everything the
    specifications say about how TNS should be done. The main
    problem used to be that a single filter was used for all
    coefficients which despite being explicitly recommended by
    the specifications usually sounds wrong, therefore it’s
    a corner case in the current TNS implementation.

    This commit also changes the coefficient bit size, as apparently
    it’s better to use lower precision in case the windows are eight
    short. This is apparently what fdk_aac uses, looking at the bit
    stream and makes sense. Also the order when 8 SHORT windows happen
    is important as 7 was too much and according to PSNR was worse
    while 5 is just about correct.

    Signed-off-by : Rostislav Pehlivanov <atomnuker@gmail.com>

    • [DH] libavcodec/aacenc_tns.c
    • [DH] libavcodec/aacenc_tns.h
  • Making a simple video directly using C

    13 août 2020, par thedeathstar1997

    I am working on an Ising Lattice simulation (2D binary image) using C and I want to generate a video of the simulation. Currently I am saving every step as a ppm image and using ffmpeg to convert the folder of images into an mp4 video. Is there any way to directly generate a video in the C code ? I know that C has a library for ffmpeg but the documentation got me very confused.

    &#xA;

  • ffmpeg making gif from serially numbered images

    30 mars 2017, par hadi k

    my files are named :

    file1.png
    file2.png
    file3.png
    ....
    file11.png
    ...
    file123.png
    ...
    file200.png

    now I want to make a gif of these images. I tired with

    ffmpeg -framerate 10  -pattern_type glob -i 'file*.png' -c:v libx264 -pix_fmt yuv420p growth.avi

    but it does not work properly. What am i doing wrong ?