Recherche avancée

Médias (91)

Autres articles (99)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (9586)

  • ffmpeg frame rate per second (fps) not working ? [migrated]

    7 février 2014, par plancherel

    I'm generating .png files and then creating a movie of them. The command that I'm using is :

    ffmpeg -r fps -i im%d.png -y movie.mp4

    This command works fine when fps = 1,6 or 10. However, it fails when fps=2.

    It builds and mp4 file ; however, the images are not displayed. Before anyone asks, yes, I'm generating the right number of .png files before each ffmpeg call. For example, if my movie should be 9 seconds long at 10 fps then I have 90 png files. When my movie is 2 fps, then I have 18 image files.

    Could someone please help me ?

    Also, I did try this and it didn't work either

    ffmpeg -r fps -i im%d.png -r 18/9 -y movie.mp4

  • How to avoid that Mediafilesegmenter cuts the last frames ?

    26 avril 2021, par Alexander Khitev

    We use ffmpeg and mediafilesegmenter for creating HLS video, we also created shell script for convenience. I noticed one issue that if we use original video with float duration, for example 10.602 seconds mediafilesegmenter cuts some last frames. How can I fix it ? Or what other tools can I use to create HLS ? Thanks !

    


    ffmpeg -i movie.mp4 -vb 500K movie-500K.mp4
ffmpeg -i movie.mp4 -vb 1500K movie-1500K.mp4

mkdir small
mkdir big

mediafilesegmenter -f small -A -B segment -t 1 movie-500K.mp4
mediafilesegmenter -f big -A -B segment -t 1 movie-1500K.mp4
mv movie-500K.plist small/movie-500K.plist
mv movie-1500K.plist big/movie-1500K.plist

variantplaylistcreator -r -o prog_index.m3u8 small/prog_index.m3u8 small/movie-500K.plist big/prog_index.m3u8 big/movie-1500K.plist


    


  • automatically convert all video to mp4 h264 [on hold]

    23 août 2013, par Xiabili

    I am a debian user and I have a lot of videos (wmv, flv, mp4 ... more than 100gb) on my server.

    The problem is that the most of these videos are with mpeg4 and these codec is not supported by our Wowza server (basic License).

    That is way we want to convert all these videos into H264 format.

    So I need a script that converts videos recursively in the folders and if possible remove the old files after the converting.

    I need your experience ! Thanks a lot !

    Regards

    Bili