
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 (106)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
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 (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
Sur d’autres sites (11960)
-
FFmpeg : How to convert horizontal video 16:9 to vertical video 9:16, with Black background on top and bottom sides
28 mars 2019, par IbrahimCetinI wanted convert 16:9 video to 9:16 and find this :
"FFmpeg : How to convert horizontal video 16:9 to vertical video 9:16, with blurred background on top and bottom sides"But I want video top and bottom sides black but I couldn’t. How can I do this ?
Thanks for your help
-
Ffmpeg split video file to few video files (with fixed duration) with playlist
13 septembre 2020, par Kiril MytsykovI need to split video file by duration (for example, if I have video file with duration of 30sec and I want to get 10 chunks : 3sec, 3sec etc.. and m3u8 playlist).


I have my-video.mp4 (30 sec).
When I run this command :


ffmpeg -i my-video.mp4 -c:v libx264 -c copy -an -map 0 -muxdelay 0 -muxpreload 0 -output_ts_offset 0 -f segment -segment_time 3 -segment_wrap 1000 -segment_list_size 1 -segment_list my-video.m3u8 -segment_list_flags +live my-video-%03d.mp4



The first problem is :
I receive only 4 mp4 files :


my-video-000.mp4 (8sec)
my-video-001.mp4 (8sec)
my-video-002.mp4 (8sec)
my-video-003.mp4 (5sec)



The second problem is :
my-video.m3u8 playlist is created, but with last segment only :


#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:3
#EXT-X-ALLOW-CACHE:YES
#EXT-X-TARGETDURATION:6
#EXTINF:5.033333,
my-video-003.ts 
#EXT-X-ENDLIST



What's wrong with my command. I have tried a lot of different combinations (after reading http://ffmpeg.org/ffmpeg-formats.html#segment_002c-stream_005fsegment_002c-ssegment and similar questions/answers on stackoverflow, but didn't succeed)


-
How to overlay two video files including audio of each video using ffmpeg"
11 janvier 2023, par user255048i would like to merge some music (video file) and singing (video file) into one video file.


i've tried with this :


ffmpeg -i music.mp4 -itsoffset 2 -i sing01.mp4 -filter_complex overlay=635:300 test.mp4



and everything is fine, except that i cannot hear the singing. what i should add to this command to do the job correctly ?


thanks