
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (34)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (6133)
-
laptop screen recorder built using python & ffmpeg can generate only video file in AVI format succesfully,generating corrupted MP4 file as output ? [closed]
19 mars, par Rupashree RoyI have build laptop screen recorder with internal and external audio using python and ffmpeg,but it couldn't store output file in Other video formats,excepts AVI,if I try to store it in MP4 format,ut's showing file is corrupted,what to do/


Here's the code, enter link description here


-
Combining an audio file with a video file
13 mai 2014, par Daniel C.I have two files : one audio and one video (mp4).
I want to create from those two files, one video file that will contain both the audio and video output. The main issue is the synchronization between both of those recorded files. There’s a man speaking, and the movement and sound need to line up.
I heard about the FFmpeg library for iOS but didn’t found any good information about it.
-
Merge one audio file and one image file to create a video with ffmpeg
26 avril 2022, par Jiewei XiongI first tried :


ffmpeg -y -i image.jpg -i audio.mp3 -c:a copy output.mp4



but when I uploaded to video sharing websites (bilibili.com), it says "no video track", so I tried :


ffmpeg -r 1 -loop 1 -i image.jpg -i audio.mp3 -acodec copy -r 1 -shortest output.mp4



The file was successfully uploaded, but when I watched it on the website, the image disappeared and it turned grey. I merged 6 videos and only one of them can be normally played back.


What should I do ?