Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (50)

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

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (4183)

  • Got incorrect audio duration from ffmpeg

    8 septembre 2021, par Remeraze

    I used an ffmpeg command to export parts of an audio clip :

    


    ffmpeg -i {path} -acodec copy -ss {start_time} -to {end_time} {output_path}


    


    Unfortunately, this has the side effect of not changing the time duration in the file's details section, making many programs I use think the time of the cut audio files is much more than it really is.

    


    Is there a way to either make ffmpeg change the duration, or find a command in python that can change an audio file's "length" stat so I can do it manually ? I couldn't find any way online.

    


    Thanks.

    


  • ffmpeg vertically center align multiple lines of text using drawtext and subtitle both filters independent of font size

    22 janvier 2020, par Rehan

    I want to vertically center align the text on video no matter what the font size is. And possibly if it could be done using drawtext filter and subtitles filter as well for subtitles filter if anyone can guide how to move the lines few columns up.

    I tried multiple [in]drawtext=...,drawtext=...[out] filter but when change the font size alignment goes wrong curious to know if there is some calculated formula to do this accurately.

  • ffmpeg create video from a sequence of images

    1er février 2021, par t97

    I have a sequence of images as follow :

    


    img_1.png
img_2.png
img_3.png
...
img_1799.png


    


    From the documentation I run this command

    


    ffmpeg -f image2 -pattern_type glob -framerate 24 -i 'img_*.png' test-size.mp4


    


    but it doesn't generate the video correctly. I also looked online but wasn't able to find the correct command.

    


    what's the command to run to merge all the images so the output video is 30s long at 24 fps ?