Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (90)

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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (8637)

  • transcoding flv to mp4 with ffmpeg very slow

    11 avril 2013, par bhu Boue vidya

    i am trying to support the recording of webcam video on our website, which i then need to transcode to mp4 and webm to support html5 playback. i have ffmpeg 1.2 installed on our server, and have the whole process running fairly well. the one problem i do have though is transcoding flv to mp4. it is unacceptably slow. eg, an 8 second flv takes about 2.5 mins to transcode !

    the ffmpeg cmdline i am using is :

    ffmpeg -y -i webcam.flv -c:a libfaac -ac 2 -b:a 64k -ar 44100 -c:v libx264 -b:v 350k webcam.mp4

    there are so many ffmpeg params, i am a bit lost as to the best way forward with this issue. you can download a test flv from here :

    https://www.dropbox.com/s/hhd6uhdiuhk800w/webcam.flv

    by comparison, transcoding to webm takes about 5 seconds :

    ffmpeg -y -i webcam.flv -c:a libvorbis -ac 2 -b:a 64k -ar 44100 -c:v libvpx -b:v 350k -metadata:s:v:0 rotate=0 webcam.webm

    i would greatly appreciate any help !

  • How can I burn in .ass file and a watermark to a video file using ffmpeg simultaneously ?

    9 mai 2023, par Candour

    I want to add subtitles and a watermark to a video using ffmpeg. For now I'm using Handbrake to burn in the subtitles and later I execute an ffmpeg command to add a watermark from png file.

    


    The watermark command :

    


    ffmpeg -i F:\ffmpeg\bin\video.mp4 -i F:\ffmpeg\bin\logo.png -filter_complex "[1]format=rgba,colorchannelmixer=aa=0.4[logo];[logo][0]scale2ref=oh*mdar:ih*0.07[logo][video];[video][logo]overlay=(main_w-overlay_w)-10:10" output.mp4


    


    I was wondering how a command would look like if I wanted to skip the Handbrake part and burn the subtitles in directly in the same command as the watermark.

    


    Well, I understand the basics of ffmpeg commands and I tried to combine the commands but i got lost. I think the third input would be needed that somehow also goes in the overlay filter. I really hope someone can help

    


  • ffmpeg : Set the language of an audio stream without touching other metadata

    7 octobre 2020, par amirvf

    I have a MP4 file with an audio stream set to English. I want to change the language of audio stream to French.
I use the following command :

    


    ffmpeg -i input.mp4 -map 0 -c: copy -metadata:s:v language=und -metadata:s:a:0 language=fre output.mp4


    


    The language of audio stream changes to French without any issues, however, the "Title" of language is lost.

    


    Initially the audio stream was like this :
    
Language : English
    
Title : AC3 5.1 Channels

    


    After changing the language to French it is like this :
    
Language : French
    
Title : empty

    


    How should I modify the command so it does not touch the other attributes such as "Title" ?

    


    Thanks