
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (65)
-
Les statuts des instances de mutualisation
13 mars 2010, parPour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...) -
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (11691)
-
FFmpeg Video Merging Length Issue
1er avril 2014, par Sanket990I have created 2 file 1)first.mp4 and 2) test.mp3 when i am merging this file and created one new video .video is created perfectly done but getting one problem (Audio Problem)
Two file description
first.mp4 in video Length -30Sec
test.mp4 in audio Length -10SecHow to handle remaining new video in 10Sec after audio not listen problem any way to handle this type of problem or Any way to detect if remaining 20Sec audio set as first.mp4 video length 20Sec to 30Sec audio length set
I am executing below command
String videoWithAudio[] = { "ffmpeg", "-i", "/sdcard/first.mp4", "-i",
"/sdcard/test.mp3", "-c:v", "copy", "-c:a", "aac",
"-strict", "experimental", "-map", "0:v:0", "-map",
"1:a:0", "/sdcard/jointAb.mp4" }; -
fate/matroska : Add test for zero-length Block
25 avril 2020, par Andreas Rheinhardtfate/matroska : Add test for zero-length Block
It furthermore tests the demuxer's handling of chained SeekHeads,
level 1-elements after the Clusters and the muxer's capability of
writing huge TrackNumbers as well as expanding the Cues' length field
by one byte if necessary to fill the reserved space. It also tests
propagation of metadata.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
How to get video length using ffmpeg
21 janvier 2019, par KevinI am getting the duration of video using following code,
if (substr(php_uname(), 0, 7) == "Windows"){
$time = exec("{$ffmpeg} -i $path 2>&1 | findstr Duration");
echo $time;
exit;
$duration = explode(":", $time);
$seconds = ($duration[0] * 3600) + ($duration[1] * 60) + round($duration[2]);
$minutes = $seconds/60;
$real_minutes = floor($minutes);
$real_seconds = round(($minutes-$real_minutes)*60);
$length = $real_minutes.':'.$real_seconds;
}$time
shows the output likeDuration: 00:00:06.52, start: 0.000000, bitrate: 350 kb/s
but$duration
shows only likeArray
ans$length
shows 0:0 only for all videos. So how can i get video length please help me.