Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (111)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10682)

  • I want to create a video from images with transition applied

    29 mars 2023, par Kaleem Abbas

    I want to load images and create video with transition applied. I was able to create video but transitions are not being applied.

    


    ffmpeg -framerate 1/5 -start_number 1 -i "D :\video\photo\images%%d.jpg" -filter_complex "[0:v]split=5[0a][0b][0c][0d][0e] ;[0a]format=yuva420p,hflip[flip0] ;[0b]format=yuva420p[bg] ;[0c]format=yuva420p[bg1] ;[0d]format=yuva420p[bg2] ;[0e]format=yuva420p,hflip[flip1] ;[bg][flip0]overlay=x='min(-w*(t-1.5),0)':shortest=1[bg0] ;[bg0][bg1]overlay=x='min(-w*(t-0.5),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg01] ;[bg01][flip1]overlay=x='min(-w*(t),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg1] ;[bg1][bg2]overlay=x='min(-w*(t+0.5),0)':shortest=1,drawbox=t=fade:enable='between(t,0,1)':color=white[bg12] ;[bg12][1:v]overlay=shortest=1:x='if(gte(t,1),0,-w+(tw))':y=0,drawbox=t=fade:enable='between(t,0,1)':color=white[video]" -map "[video]" -c:v libx264 -crf 18 -preset veryfast -t 5 -vf "fade=t=out:st=4:d=1:alpha=1, wipe=w=0.5:h=0:y='H/2':x='if(gte(t,1),0,W-wt/2)':d=1" output.mp4

    


  • How to compute ms_ssim with libvmaf in ffmpeg without computing vmaf score ?

    7 décembre 2022, par lover14

    I would like to compute a ms_ssim score using ffmpeg. I would like to use libvmaf, but libvmaf always computes the vmaf score in parallel

    


    With the base ffmpeg tool, we can compute the ssim score with a command like

    


    ffmpeg -i distorded.mp4 -i source.mp4 -filter_complex "[0:v]scale2ref=flags=bicubic[distorded];[1:v][distorded]ssim" -f null -


    


    And if we want to compute a ms_ssim score, we can use the libvmaf like so

    


    ffmpeg -i distorded.mp4 -i source.mp4 -filter_complex "[0:v]scale2ref=flags=bicubic[distorded];[1:v][distorded]libvmaf=feature='name=float_ms_ssim'" -f null -`


    


    This gives the ms_ssim score, but computes in parallel the vmaf score (which is very slow, in opposition to the ms_ssim which is very fast).

    


    Is there a way to compute the ms_ssim score without calculating the vmaf score ?

    


  • avdevice/oss_dec : account for sample size when computing timestamp

    1er juin 2022, par Matt Jacobson
    avdevice/oss_dec : account for sample size when computing timestamp
    

    Don't assume each sample is one byte in size. Doing so results in wrong and
    occasionally non-monotonically-increasing timestamps.

    Fix nearby cosmetic typo.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavdevice/oss.c
    • [DH] libavdevice/oss.h
    • [DH] libavdevice/oss_dec.c