
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (34)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (6771)
-
Concatenate sped up videos and normal speed ones using ffmpeg
5 juillet 2020, par FlucTuAte.I have a python script that uses ffmpeg to cut different sections of a video. There are ones that i want to keep as-is, and i use this ffmpeg command for that :


os.system((
 "ffmpeg "
 "-loglevel error "
 "-nostats "
 "-hide_banner "
 f"-ss {start / fps} "
 f"-i \"{uncutVideo}\" "
 f"-t {(end - start) / fps} "
 "-c copy "
 "-avoid_negative_ts make_zero "
 f"tmp\\out{processedClips}.mp4"
))



Start and end are frame numbers, that's why i divide by fps.
Then I have the parts where I want to speed up the video. I use this command for that :


os.system((
 "ffmpeg "
 "-loglevel error "
 "-nostats "
 "-hide_banner "
 f"-ss {start / fps} "
 f"-i \"{uncutVideo}\" "
 f"-t {(end - start) / fps / cfg.speed} "
 f"-vf \"setpts=PTS/{cfg.speed}\" "
 "-avoid_negative_ts make_zero "
 "-an "
 f"tmp\\out{processedClips}.mp4"
))



After these are done I want to concatenate them using the concat demuxer :


os.system((
 "ffmpeg "
 "-loglevel error "
 "-nostats "
 "-f concat "
 "-safe 0 "
 "-i videoClips.txt "
 "-c copy "
 f"\"{cfg.saveDir}\\{srcFileName}-Cut.mp4\""
))



This runs fine, but in the output file there is a long pause when the sped up part would start. The last frame of the normal speed part is shown but the timeline shows that the video is playing. After the sped up part would have ended it shows the next normal speed part properly. This is what I see in VLC at least. I've also tried MPC-BE and MPC-HC. They also mess up but instead the sped up part is displayed properly and they pause right after. These pauses seem to be as long as the sped up part would be.


What could cause this ?


Any help is appreciated.


-
vorbis : fallback to normal division instead of crashing
19 mai 2013, par Luca Barbatovorbis : fallback to normal division instead of crashing
The use of ff_inverse speeds up slightly arches + compilers that
do not provide a division faster than the whole machinery, such
as ppc32 + gcc4.7, but has operational limits.Drop the always-enable assert and provide a fallback.
-
Revision 42133 : des sizes et maxlength corrects
7 novembre 2010, par kent1@… — Logdes sizes et maxlength corrects