Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (40)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Initialisation de MediaSPIP (préconfiguration)

    20 février 2010, par

    Lors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
    Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
    Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
    Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)

Sur d’autres sites (9254)

  • FFMPEG How to apply subtitles [ass] on a live video stream

    19 août 2014, par Lewisou

    I am going to develop a camera recording application.

    One of the feature is to apply subtitles while recording. Users can key in subtitles on the camera preview screen when the camera is recording.

    I know I can apply the subtitles after the record is finished by running :

    ffmpeg -i ./file.mp4 -c:v libx264 -c:a copy -vf "ass=t.ass" out.mp4

    but which takes a very long time. So it will be better to do it on the fly (while recording a video).

    Notice : the subtitle itself is also a live-stream.

    Any one help ?

  • Convert animated GIF to MP4 in PHP [on hold]

    26 juillet 2014, par user3878839

    How do I do that ? I only know that you’d use FFMPEG, but I don’t know exactly how. Also, in the process, can I resize the images and set the video’s frame rate ? By the way, I have imagick if that helps.

  • Add sound tracks to a video file with FFmpeg [on hold]

    26 juillet 2014, par user3877422

    I look this page : https://zoid.cc/ffmpeg-audio-video/ but i don’t understand how to add multiple audio to a video, i have a problem.

    My video length : 04:30
    My audio1 length : 01:30
    My audio2 length : 02:00

    I tried :

    ffmpeg -i vid.avi -i audio1.wav -i audio2.wav -map 0:0 -map 0:1 -map 1:0 -map 2:0 -c:v copy -c:a copy output.avi

    FFMpeg set is video length for audio1.wav length (01:30)

    I want add audio but not change video length (04:30)
    How to fix this problem ?

    Thanks for help.