
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
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 -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
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" };