
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (44)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (6502)
-
How to automatically use python to create list for every word ? [closed]
13 juin 2020, par Kanglando


Here is wav and image file . and you can donwload it - https://www.dropbox.com/s/iuwt6boc2r2fotc/word_images_file.zip?dl=0



1st step create word list txt file for every word.



put image name to list , and the list name is every word.



but I don't know how to write python code for create every word image list .



example :



accordion-word.txt

 file 'accordion_1_musical_instruments.jpg'
 file 'accordion_2_musical_instruments.jpg'
 file 'accordion_3_musical_instruments.jpg'
 file 'accordion_musical_instruments.jpg'




2nd step create audio file list



don't know how to use python write code to create list for every word audio.



accordion-audio.txt

 file 'slience_2sec.mp3'
 file 'This_is_.mp3'
 file 'slience_2sec.mp3
 file 'accordion.mp3'




Thank you !


-
Ending a video segment on a non-key frame while preserving codec
13 août 2020, par painfulenglishI want to extract a segment from the middle of a video while keeping the original encoding. I understand that I need to start that segment on a keyframe. However, I would think that it should in principle be possible to end the segment on an arbitrary frame. Can anyone confirm that and provide an example for how to achieve this using ffmpeg ? It seems that
-c:v copy
enforces key frames at both ends and the same is true when using the-segment
option.

My current commands have the form (times and frames are examples and do not match)


ffmpeg -ss 00:00:05 -i test.mp4 -to 00:00:10 -c:v copy test_cut.mp4



or


ffmpeg -i test.mp4 -codec copy -map 0 -f segment -segment_frames 80,140 test_%03d.mp4



-
How can ffmpeg stream a never-ending video file to RTMP
17 septembre 2020, par YooooomiI currently have an issue publishing a constantly appended video file to RTMP.
My workflow is


- 

- I proxy the
MediaSource
class in the browser. - From this I upload every byte appended to the buffers in a self hosted server
- The server finally appends the
video.avi
file.








I want to stream that constantly updated avi file to an RTMP endpoint.
The issue I encounter is that
ffmpeg
will stop streaming the file once it has reached the duration it had when launchingffmpeg
.

I don't know much about streaming videos and if it can be done "just" by appending an avi file.
The command I'm using is


.\ffmpeg.exe -re -i .\file.avi -c copy -f flv rtmp://localhost/live/STREAM_NAME


Thanks in advance for your help


- I proxy the