
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 (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (9398)
-
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.


-
lavc/h264dsp : R-V V 8-bit h264_idct_add16
1er juillet 2024, par Rémi Denis-Courmontlavc/h264dsp : R-V V 8-bit h264_idct_add16
While this *tends* to be faster than plain C, the performance numbers
are all over the place, presuambly due to the conditional character of
the main loop.Some additional micro-optimisations should be feasible after the
underlying h264_idct_add and h264_idct_dc_add functions are also
implemented. Then it will no longer be necesseray to stricly abide by
the C ABI. -
hevc : deobfuscate slice/tile boundary handling for DBF
27 juillet 2014, par Anton Khirnov