
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 (44)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (5578)
-
Cut the stream at specific clock time in FFMPEG
14 juin 2017, par FearhunterI use the following command from ffmpeg to cut my live stream from VLC :
ffmpeg -i InputStreamURL -acodec aac -strict -2 -vcodec libx264 -hls_wrap 100 -f hls -hls_time 20 /var/www/html/ts/1.m3u8
Now I want to cut the stream at a specific time like for example 09:00 am till 12:00 PM. I was reading about the
segment muxer
in the FFMPEG documentation. I read the following command :segment_atclocktime 1|0
If set to "1" split at regular clock time intervals starting from 00:00 o’clock. The time value specified in segment_time is used for setting the length of the splitting interval.
For example with segment_time set to "900" this makes it possible to create files at 12:00 o’clock, 12:15, 12:30, etc.Default value is "0".
Is there a other command to specify a timestamp to record the stream ? This is my my interface I am gonna build :
The scenario is :
1 : enter stream URL
2 : begin time = 15:00 pm
3 : end time = 17:00 pm
4 : pieces = 3Conclusion :
15:00 - 17:00 = 2 hours
2 hours * 3600 = 7200 seconds
7200 / 3 = 2400 seconds for each sliced videoHow can I use segment_atclocktime for this scenario ?
-
Add sound effects at particular time in a Video file
13 janvier 2017, par G SinghI have a video file and I need to add multiple audio effects to it at particular time.
How can this be achieved ?
Using FFMPEG only audio can be merged with video file but how to add a small audio effect at particular time.
I tried the following way,
ffmpeg.exe -i video.mp4 -i audio.mp3 -map 0:v -map 1:a -c copy -y output.mp4
Is there any other open source or paid library to do this task ?
Any kind of guidance will be appreciated.
Thanks.
-
Audio latency and video time increased ffmpeg
10 avril 2020, par AmazonMy video is frames 29.97 and 23.98 when outputting a delay in audio and video output



My input video is 29.97 but when I output the sound is slow and the video time increases. please help me . thank you very much



Thank you for taking time for me



My code



for %%i in ("%INPUT%\*") DO ffmpeg -y -i "%%i" -vf "scale=iw*4:ih*4,zoompan=z='if(lte(mod(on,100),25),zoom+1.8,zoom-1.8)':x='iw/1.8-(iw/zoom)/1.8':y='ih/2.4-(ih/zoom)/2.4':d=0" -c:v libx264 -s "1280x720" "%OUTPUT%/%%~ni.mp4"