Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (78)

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

  • ffmpeg combine a video and the srt with multiple lines ?

    9 avril 2022, par Sunshine

    I know how to combine a video 1.mp4 and a srt 1.srt document by ffmpeg,
ffmpeg -i 1.mp4 -i 1.srt -map 0 -map 1 -c copy -crf 23 video-with-subtitles.mkv
but here I want to add the subtitles on the right hand side of my screen with multi-line on the RHS scrolling up as the time goes. Is there some command in ffmpeg to do it ?
Allow the video picture and the subtitle coincide here.
I need to find one parameter to control the position of the subtitles and
also one parameter to control the number of multi-lines.

    


  • FFmpeg add a text to last image only

    29 mai 2018, par BentCoder

    I managed to create a video from set of non-sequential images and attached an audio to it. Also I added a "Copyright" text on top right hand corner so that the text appears throughout the video. However, I would like that text to appear only on the last image. How should I change my code below to address this ?

    ffmpeg \
    -thread_queue_size 512 -f image2 -pattern_type glob -framerate 1/3 \
    -i '*.jpg' \
    -i 'audio.mp3' \
    -c:a aac -c:v libx264 \
    -vf scale=640:480, format=yuv420p, drawtext="text='Copyright':fontcolor=white:box=1:boxcolor=black@0.5:boxborderw=5:x=w-tw-5:y=5" \
    -preset medium \
    video.mp4
  • FFMpeg codec compatible with rgb24 ?

    21 octobre 2013, par Chad Mourning

    I'm trying to turn some RGB data from my OpenGL screen buffer into a video using ffmpeg.

    I have successful output videos of "hand made" data using some of the YUV formats, but I'd like to use an RGB24 pixel format so I can have a 1:1 correspondence between my screen buffer and the output images.

    The codecs I've used so far don't support RGB24, except for CODEC_ID_RAWVIDEO. But when I used RAWVIDEO, the video it created wouldn't play in any of my players (it had a sane size, but appeared empty).

    Any advice on a usable RGB24 compatible codec ?