
Advanced search
Other articles (67)
-
La file d’attente de SPIPmotion
28 November 2010, byUne 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 le (...) -
Le plugin : Podcasts.
14 July 2010, byLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 video/mp4 (...) -
Publier sur MédiaSpip
13 June 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
On other websites (5298)
-
If I kill ffmpeg command its video lenght is 5 seconds shorter then the actual length?
7 May 2014, by Sumit JasujaI am using ffmpeg to capture screen. output is in mp4 format. when I kill ffmpeg command its video length is 5 seconds shorter then the actual length.
Process killed using following code :
foreach (Process pr in Process.GetProcessesByName("ffmpeg"))
{
pr.Kill();
} -
ffmpeg modify audio length/size ( stretch or shrink)
24 January 2024, by midoI am developing a web app, where people can record videos. I have been able to send chunks of audio n video to server successfully, where I am trying to combine them and return as single proper file.



my problem is if the recording is for one hour, after merging the chunks



video length : 1:00:00 , audio length : 00:59:30,



now, this is not a issue of audio not getting recorded( I have checked that), the problem is, somehow, when i merge the chunks of audio, it shrinks,





I find that it is progressive sync issue where it gets worse and worse as time increases.





I have searched the net for the solution, most places say
async
, I have tried using it, but to no avail, is the below usage correct?


ffmpeg -i audio.wav -async 1 -i video.webm -y -strict -2 v.mp4



(v.mp4 is the final file that I provide to the users.)


-
ffmpeg modify audio length/size ( stretch or shrink)
14 June 2016, by midoI am developing a web app, where people can record videos. I have been able to send chunks of audio n video to server successfully, where I am trying to combine them and return as single proper file.
my problem is if the recording is for one hour, after merging the chunks
video length : 1:00:00 , audio length : 00:59:30,
now, this is not a issue of audio not getting recorded( I have checked that), the problem is, somehow, when i merge the chunks of audio, it shrinks,
I find that it is progressive sync issue where it gets worse and worse as time increases.
I have searched the net for the solution, most places say
async
, I have tried using it, but to no avail, is the below usage correct?ffmpeg -i audio.wav -async 1 -i video.webm -y -strict -2 v.mp4
(v.mp4 is the final file that I provide to the users.)