Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (53)

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

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (5759)

  • write_gif is automatically changing the resolution of the resultant gif as compared to the supplied video(mp4) file ? How to avoid that ?

    14 septembre 2022, par Mohammed Hussain

    Please see the code below and the result. How can we get the gif in the original dimensions. The moviepy documentation doesn't seem to say much.

    


    from moviepy.editor import *  import os  os.chdir(r'G:\')  clip = VideoFileClip("VID.mp4").subclip(6*60, 6.1*60) clip.write_gif("vidgif.gif",program = 'ffmpeg')

    


    enter image description here

    


  • When ffmpeg transcodes, How to use expr to determine video resolution auto set -b:v suitable bit rate

    2 septembre 2022, par SevenFantastic

    I tried to use this code, but ffmpeg doesn't recognize this way of writing

    


    ffmpeg -i .\test.MP4 -b:v "expr: if(gte(iw,800), 2000K, 1000K)"  -f mp4 -y output.mp4


    


    even replace the iw to const 1000, it doesn`t work.

    


    ffmpeg -i .\test.MP4 -b:v "expr: if(gte(1000,800), 2000K, 1000K)"  -f mp4 -y output.mp4


    


    But this way of writing it works fine I'm baffled

    


    ffmpeg -i .\test.MP4 -force_key_frames "expr: gte(t,n_forced * 15)" -f mp4 -y output.mp4


    


  • g2m : Relax resolution change constraints

    7 octobre 2015, par Vittorio Giovara
    g2m : Relax resolution change constraints
    

    Do not fail when original resolution is smaller than current one,
    as the frame buffer is resized automatically.

    Signed-off-by : Vittorio Giovara <vittorio.giovara at gmail.com>

    • [DBH] libavcodec/g2meet.c