Recherche avancée

Médias (91)

Autres articles (72)

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

  • ffmpeg Fade-in stuck at first frame

    14 janvier 2017, par Pradeep Varadharajan

    I am trying to apply a fade-in effect at the start of a video and a fade-out effect at the end of a video.

    The fade-out effect works as I expect. However the fade-in doesn’t. I am noticing that at the starting, when the video is supposed to be black before fading in, the initial frame shows up vaguely and is stuck till the fade duration ends. The Audio fade-in seems to work correctly however.

    ffmpeg -i infile.mp4 -strict experimental -y -vf "fade=t=out:st=28:d=2, fade=t=in:st=2:d=2" -af "afade=t=out:st=28:d=2, afade=t=in:st=2:d=2" fade_in.mp4

    Can someone please help me understand what I am doing wrong here ?

    According to ffmpeg documentation for this filter, the below example is supposed to make the first 5.5 seconds black, then fade in for 0.5 seconds :

    fade=t=in:st=5.5:d=0.5
  • FFMPEG : Creating video using drawtext along with word wrap and padding

    11 octobre 2022, par Chaitanya Sai

    I'm working to create a video from text with drawtext filter. Output video i can see the text is overflowing instead of coming in new line.

    



    Is there any way i can archive word wrapping and also set the internal padding to video ?

    



    Below is the snippet I'm using to generate video from text

    



    ffmpeg.exe -f lavfi -i color=c=white:s=640x480:d=5.396 -vf "[in] drawtext=fontfile=font.ttf:fontsize=20:fontcolor=black:x=0+0*print(tw):y=0+0*print(th):text='this is new whiteboard te':enable='between(t,6.634,6.818)',drawtext=fontfile=font.ttf:fontsize=20:fontcolor=black:x=0+0*print(tw):y=0+0*print(th):text='this is new whiteboard testing':enable='between(t,0.0,2.032)',drawtext=fontfile=font.ttf:fontsize=20:fontcolor=black:x=0+0*print(tw):y=0+0*print(th):text='this is new whiteboard testing no padding and the text is overflowing from the video frame check this  need to acheve word wrapping':enable='between(t,2.032,5.396)'"[out] -c:v libx264 -t 30 -crf 30 ../output.mp4


    



    Output looks like this
enter image description here

    


  • Want to convert my 16:9 size MKV video to 4:3 size AVI video file

    19 septembre 2012, par Bimal Rekhadiya

    I have a video in MKV format and it's size is 720x304 (16:9 ratio) size video.

    I want to convert it to AVi format (using xvid video codec). The output file size should be 480x360 (4:3 ratio) and also want to keep the original (16:9) ratio so it should be cinemascope (black areas at top and bottom).

    I am on Ubuntu linux OS so I can use mencoder, avconv(ffmpeg) or any tool that work on Linux.

    I am trying this command :

    avconv -i sample.mkv -vcodec libxvid -r 25 -b 1200 -aspect 4:3 -q 1 t.avi

    But the problem is that the video is stretched to 4:3 and I want to keep original video's ratio and want to add black boxes at top and bottom so it will look cinemascope.

    Please provide me command to do this.