
Recherche avancée
Médias (91)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (46)
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (...)
Sur d’autres sites (5195)
-
ffmpeg - converting to MJPEG with FPS filter doesn't change FPS
14 septembre 2022, par Jordan SimI'm trying to change the FPS of a video, and convert it to MJPEG with
ffmpeg
. The following doesn't change the actual FPS of the video (read throughffprobe
), although it does seem to change the number of frames. I've tried :

ffmpeg -i in.mp4 -filter:v fps=60 -vcodec mjpeg -q:v 2 -r 60 out.mjpeg


As well as encoding to an intermediate file (which has the correct FPS), and then encoding to mjpeg.


ffmpeg -i in.mp4 -filter:v fps={fps} -preset veryslow -crf 0 -r 60 temp.mp4
ffmpeg -i temp.mp4 -vcodec mjpeg -q:v 2 out.mjpeg



This seems specific to
mjpeg
in particular - why isn't my video FPS changing ?

-
Ffmpeg Python - Why "filter" makes the output muted ?
2 novembre 2022, par muzakNormally my input has an audio. When I convert my input with following code, the output is muted.


ffmpeg.input("input.webm").filter("scale", force_original_aspect_ratio="decrease", force_divisible_by=2).output(("out.mp4"), vcodec="libx264", r=60, preset='fast').run()



.filter()
function causes it and I don't know how to fix it. I want to use filter, but I want to keep the audio same also.

Thank you for your help.


-
Can ffmpeg drawtext filter read RTF file as video overlay ?
24 septembre 2015, par Rimon Solimani’m using ffmpeg with ffserver to read a video stream, add a text overlay and re-stream the video in mpjpeg format. The text overlay is stored in a file, reloaded every frame with the drawtext ffmpeg filter and all is working properly.
Now I want to make more awesome the overlayed infos, I googled something like "ffmpeg drawtext rtf" and "ffmpeg drawtext html" but I dind’t found any solution...
Is this possible ?
Can I use any kind of Rich Text format file as an overlay in ffmpeg drawtext filter ?Thanks for reading (and maybe help me).
R.