
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (102)
-
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 (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
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 (11257)
-
avcodec/internal : Bump sane_nb_chanels
20 août 2019, par Michael Niedermayer -
Combine images into video (with audio in background) in ffmpeg
4 juillet 2021, par Mayank ThapliyalI have a folder with 15 images and 1 audio file :


image_1.jpg, image_2.jpg, image_3.jpg ..... and music.webm


(Also resolution of images is 1440x720)


I want to combine these images into a video with audio in background.And framerate I require is 0.2 (5 second for each frame).I gave a search on Stackoverflow and I found the nearest example and tried.But it failed.


ffmpeg -f image2 -i image%03d.jpg -i music.webm output.mp4


(Actually I have very little knowledge of ffmpeg so please excuse my foolishness)


Please help me with my issue.(Also I didn't understood where in the code I have to enter framerate)


Edit :-If needed I can easily tweak with filename of images.Be free to tell me that too


-
How to copy ffmpeg conversion output to file name without previous file extension [duplicate]
20 janvier, par TimI am trying to batch convert mp4 music files to m4a music files using ffmpeg on ubuntu .The command works but uses previous file extension for new name.


find ./ -iname "*.mp4" type f -exec ffmpeg -i {} -vn -acodec cp "{}".m4a 



This command produces a new file as such :
..01_Loser.mp4.m4a


but I need
..01_Loser.m4a


I cannot figure out how to get file name without previous extension. Any help would be appreciated. Thanks !