Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (72)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • Delay in ffmpeg flow loop

    13 juillet 2021, par Dark Shadow

    I'm trying to run this command below to be in an infinite loop and it worked, but when the video ends and starts to replay, it stops for a few seconds. A kind of lag, delay, buffer and I have no idea how to solve it. Could someone out there help me ?

    


    ffmpeg command :

    


    ffmpeg -threads 2 -re -fflags +genpts -stream_loop -1 -i input -preset veryfast -b:v 2M -c copy -c:v libx264 -pass 1 -strict -2 -flags +global_header -bsf:a aac_adtstoasc -bufsize 2048k -f flv output


    


  • Revision 2b368097c8 : vp9_pick_inter_mode() : Use single loop to evaluate inter modes This commit chan

    11 mars 2015, par Yaowu Xu

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



    vp9_pick_inter_mode() : Use single loop to evaluate inter modes

    This commit changes to use single loop to evaluate all inter modes.
    There is no impact on compression quality and speed, but allow future
    experiment with the order of modes evaluated.

    Change-Id : I71696ce1014cbe127e25e98710d835987f5ecc09

  • Add line to FFmpeg waveform without a background

    26 février 2024, par kaif15

    I am trying to write an ffmpeg command to generate a waveform from audio. I've managed to generate the waveform but I fail when trying to add a line such that the silent areas are not blank.

    


    Currently the command is :

    


     -filter_complex "[0:a]aformat=channel_layouts=mono,compand=attacks=0:points=-80/-900|-45/-15|-27/-9|0/-7|20/-7:gain=15,showwavespic=s=180x26:colors=#7c84cc[fg];color=s=180x26:color=#303030[bg];[bg][fg]overlay=format=auto,drawbox=x=(iw-w)/2:y=(ih-h)/2:w=iw:h=1:color=#7c84cc" -frames:v 1


    


    I have added some tweaks of my own to boost the visual appeal but what I would like is to use the drawbox without the color filter. If I try to do that the line disappears during the silent part.

    


    I have also attempted to use a transparent image as the background but that failed as well.

    


    I have relied heavily on this question when approaching this problem :
    
Generating a waveform using ffmpeg