Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (107)

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

  • Displaying text overlay on a video in certain period of time using FFmpeg

    20 janvier 2021, par zahra_oveyedzade

    based on asked questions and available guides, it is obvious how to add text overlay on a video by using FFmpeg.
The question is, is it possible to define in which time period the text be displayed and after that be deleted ?
suppose we have a movie with 33 minutes long and it is wanted to display text in time 5:01 min until time 7 min.
Is there any way ?

    


    Thank you

    


  • avcodec/v4l2_m2m : fix setting frame period

    17 mars 2020, par Ming Qian
    avcodec/v4l2_m2m : fix setting frame period
    

    Currently the driver's frame period is incorrectly set to the frame
    rate. This is fixed in the commit.

    Signed-off-by : Ming Qian <ming.qian@nxp.com>
    Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com>

    • [DH] libavcodec/v4l2_m2m_enc.c
  • How can I generate a multiple period DASH manifest with ffmpeg ?

    14 août 2023, par Robert Simmons Jr.

    I am looking to encode a file and generate multiple periods rather than just one period. When I try to run ffmpeg with the below command, the result is a single period with multiple adaptation sets so clearly that is the wrong approach. I had thought by breaking the files by time this might work but apparently not. Any advice would be appreciated :

    &#xA;

      ffmpeg -i ~/Downloads/turkish-horses.mp4 \&#xA;  -map 0:v:0 -b:v:1 1000k -ss 0 -t 5 -c:v:1 libx264 -filter:v:1 "scale=640:-1"  \&#xA;  -map 0:v:0 -b:v:2 1000k -ss 5 -c:v:2 libx264 -filter:v:2 "scale=640:-1"  \&#xA;  -map 0:v:0 -b:v:3 3000k -ss 0 -t 5 -c:v:3 libx264 -filter:v:3 "scale=1280:-1" \&#xA;  -map 0:v:0 -b:v:4 3000k -ss 5 -c:v:4 libx264 -filter:v:4 "scale=1280:-1" \&#xA;  -map 0:a\?:0 -ss 0 -t 5 -c:a aac -b:a 192k \&#xA;  -map 0:a\?:0 -ss 5 -c:a aac -b:a 192k \&#xA;  -use_timeline 1 -use_template 0 \&#xA;  -adaptation_sets "id=0,streams=0,2  id=1,streams=4 id=2,streams=1,3 id=3,streams=5" \&#xA;  -f dash output.mpd&#xA;

    &#xA;