Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (70)

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

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

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

  • ffmpeg stops generating mp4 1.5 seconds before end

    26 septembre 2016, par Alex Konetchy

    I’m no ffmpeg expert. I’m trying to generate a video with a matching image overlapped on top to create a cinemagraph effect. For the basic test I run this, but it stops creating frames about 1.5 seconds before the end of the output video is complete.

    ffmpeg -ss 10.0000 -t 15.00000 -i waterfall.mp4 -loop 1 -i output.png -an output1.mp4

    Could anyone point me in the right direction for why this might be occurring ? All help is appreciated !

  • Can I make this FFMPEG animation smoother ?

    21 mai 2021, par mrmaker12345

    I have a basic ffmpeg command which zooms an images from 150% to 100% and overlays onto a stretched and blurred version of itself. All works great, except the zoom effect is very shaky. Is there any way to make this animation smoother ?

    


    ffmpeg -y -loop 1 -i image.jpg -filter_complex "[0:v]scale=1920:1080,boxblur=10:10,setsar=1[bg];[0:v]scale=-1:(ih*1.5)-(ih*1.5)*n/900:eval=frame[fg];[bg][fg]overlay=x=(W-w)/2:y=(H-h)/2[out]" -map "[out]" -t 10 -r 60 "out.mp4"


    


  • Need help concatenating multiple 2 part .mp4s

    9 septembre 2016, par Jay Ford7

    Basically, I have about 200 2-part videos that I would like to concatenate as 100 individual files.

    All the files are labeled with the same file name but with part 1 and part 2 on the end, ie "Video Name Part 1...Video Name Part 2"

    Through basic searching I understand how to combine two videos into one video manually with ffmpeg, but is there a way for ffmpeg to recognize the naming structure and do a batch concatenation ?

    EDIT : I should’ve said I was on Windows !

    Thanks !