
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
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)
-
How to cut using ffmpeg using start and end time not duration ?
16 octobre 2020, par Joan VengeI have seen many links that shows specifying the start time and duration but I want to specify the start and end time. From example from 5 min mark to 12 min mark. How to do this using ffmpeg ?


-
mp4 video plays from beginning while seeking to another time [on hold]
13 août 2013, par user2649860i am using lighttpd and h264 with jwplayer. I am trying to stream the MP4 video.
My problem is that the MP4 video downloads whole file before playing and i have another problem i.e. when i seek to another time/point the video plays from beginning and it plays after the end time also.
i have already tried the ffmpeg tools to create the h264 video and qt-faststart.exe tool to fix the video index problem of the video. But it does not work.
Any solution ?? THanks in advanced
-
Overlay different images with different time span to a video
26 juillet 2015, par azri.devI need to overlay a video with ’different images’ at ’different time span’.
Usingpython
andffmpeg
I developed a code which do exactlly what I need but it is time consuming and not efficient in processing.The code is just loop over all the images (with their time span) and output new video file which will be an input for the next loop.
Here is my code :
def insert_photos_to_video(photos_to_add_array, input_video):
count = 0
position_x = 25
position_y = 25
image_position = str(position_x) +':'+ str(position_y)
for item in photos_to_add_array:
image_path, time = item
start_time, end_time = time
output_video_name = str(count) + '.mp4'
output_video_file = os.path.join(os.getcwd(), output_video_name)
if count == 0:
input_video_path_name = input_video
command = 'ffmpeg -i '+ str(input_video_path_name) +' -i '+ image_path +' -filter_complex "[0:v][1:v] overlay='+ image_position +':enable=\'between(t,'+ str(start_time) +','+ str(end_time) +')\'" -pix_fmt yuv420p -c:a copy '+ output_video_file
subprocess.call(command, shell=True)
input_video_path_name = output_video_file
count = count + 1
return output_video_file- Is there any way to improve the code by combining all input images (along with their time span) in one
ffmpeg
command ? - Is there any other good way to do the above task with python using other libraries (e.g. OpenCV).
Thanks in advance.
- Is there any way to improve the code by combining all input images (along with their time span) in one