
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (56)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 -
Participer à sa documentation
10 avril 2011La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
Pour ce faire, vous pouvez vous inscrire sur (...)
Sur d’autres sites (10948)
-
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. -
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>
-
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" };