
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (37)
-
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) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (5400)
-
qsv/hevcdec : Load hw plugin by default on non-windows os
10 novembre 2017, par Li, Zhongqsv/hevcdec : Load hw plugin by default on non-windows os
Software plugin is not available on Linux, Only works on Windows.
Similar changes have been applied to qsv hevc encoder by
b05128f3c953bd66483e697d60a2e7e45ee9cfa0.Signed-off-by : Zhong Li <zhong.li@intel.com>
Signed-off-by : Maxym Dmytrychenko <maxim.d33@gmail.com> -
How can I use Windows absolute paths with the movie filter on FFmpeg ?
26 février 2024, par MasonI want to do something like
-filter_complex "movie=C:\\User\\...\\file"
but I can't because of the:
in the Windows path. I tried escaping it with a\
but no luck. I've figured out how to get around it by making everything else an aboslute path and running the command in the same directory as the file I need for the movie filter, but the only reason that works is because I only have a single movie filter. I'm hoping there's a better way.

-
Can ffmpeg create folder by itself in windows ?
20 octobre 2022, par ThanhPhanI'm recording RTSP stream from camera into mp4 files in Windows machine and I want to save files in separate folder by day using
strftime
option (name format likeD:/Video/YYYY-MM-DD/
). I really want to know that does ffmpeg have ability to create folder by itself or do I have to create it by external programs ?


For example, I want to use ffmpeg command like below :



ffmpeg -rtsp_transport tcp -i \
 -f segment -strftime 1 -segment_time 01:00:00 -segment_atclocktime 1 \
 -segment_clocktime_offset 30 -segment_format mp4 \ 
 -an -vcodec copy -reset_timestamps 1 \
 D:/Video/%Y-%m-%d/record_%H_%M_%S.mp4