
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (37)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...)
Sur d’autres sites (6466)
-
Extract final frame from a video using ffmpeg
14 mai 2020, par SaavestroI know how to extract the first frame by using



ffmpeg -ss 00:00:00 -i input.mp4 -vframes 1 -q:v 31 output.png



Here, the option
-ss
requires to know the exact time of the frame to extract.


I would like to have the final frame of any .mp4 without knowing the exact final time of the video.



Is there a way to achieve this ?


-
x11grab : Check the XQueryPointer return value
26 septembre 2014, par Antonio Ospitex11grab : Check the XQueryPointer return value
The paint_mouse_pointer() code uses XFixes to retrieve the cursor
coordinates, but XFixes gives no information about which screen the
pointer is on ; this results in always drawing the cursor on the
captured screen even if the mouse pointer was on another screen.For example, when capturing from screen 1 (i.e. -f x11grab -i ":0.1")
the cursor was being drawn in the captured image even when the mouse
pointer was actually on screen 0, which is wrong and visually confusing.CC : libav-stable@libav.org
Signed-off-by : Luca Barbato <lu_zero@gentoo.org> -
ffmpeg fails exporting in batch file, but works on terminal [closed]
16 mai 2021, par davidlaoI'm trying to make it so when my program finishes making JPGs, it converts to MP4. A screen recorder, basically.


Before you ask me, yes, my JPGs are named 1, 2, 3... and so on for each frame.


Everything is fine, except for one thing. Whenever I run ffmpeg to export through the terminal, it works like a charm, but whenever i run ffmpeg through a batch file, it throws this error which i do not understand at all :


v: No such file or directory



In case anyone needs my batch code, here it is :


@echo off
color 1e
title Exporting...
echo Exporting FFMPEG video, please wait
cd /D %~dp0
ffmpeg.exe -nostdin -i %d.jpg -c:v libx264 -vf "fps=10,format=yuv420p" out.mp4
echo Done.
pause
exit



By the way, yes, "ffmpeg.exe" exists and runs, but only exports without errors when ran via terminal.