
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (96)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 (...)
Sur d’autres sites (8055)
-
Android ffmpeg apply video effects take time
2 février 2016, par PrvNI am using below command to apply effect,its take 6-8 minutes to apply effect for 2min video.
Please help me to improve effective time for ffmpeg commands.String commandStr = "ffmpeg -y -i "
+ mVideoData.getPath()
+ " -strict experimental -vf curves=vintage -s 640x480 -r 30 -aspect 4:3 -ab 48000 -ac 2 -ar 22050 -b 2097k -vcodec mpeg4 /sdcard/videokit/curve.mp4";Thanks in advance.
-
avformat/utils : function to get the formatted ntp time
7 mai 2018, par Vishwanath Dixitavformat/utils : function to get the formatted ntp time
This utility function creates 64-bit NTP time format as per the RFC
5905.
A simple explaination of 64-bit NTP time format is here
http://www.beaglesoft.com/Manual/page53.htm -
FFMPEG merge multiple audio into video in specific time [closed]
19 avril 2024, par UmarRight now i have :


- 

- 1 - video (.mp4)
- N - audio with its timestamp start and end (.wav)






I want to merge those audio to the video based on that time with still preserving the original video audio


So that the final illustration will looks like this :


audio ----aud1------aud2------aud3--------aud4---------audn------->
video+audio ------------------------------------------------------------>



the audio position will be based on the time, i already have this data


start=00:00:12.040,end=00:00:16.640 aud1
start=00:00:16.640,end=00:00:21.520 aud2
...



How to achieve this using ffmpeg


thankyou