
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (30)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (5701)
-
Information about ffmpeg what algorithm does it use if any [closed]
15 janvier 2021, par Education 4FunI'm in search of some info about FFmpeg.I did search for the info but did not find answers for most of my questions.


FFmpeg is a framework written in C++ which helps in editing videos from the command line.

So what does FFmpeg use to do editing like are there any algorithms which it uses or any ?

If I'm building a project then I can say the project comes under image processing as a video is made up of images and the framework works on images right ?

or video processing ?

FFmpeg is a stand-alone framework right or it depends on any other ?

Sorry for asking noncoding questions here

-
Add watermark text on mkv video using ffmpeg on windows version
27 mars 2018, par Movie nowI want to put a text watermark on my mkv video using ffmpeg which appears almost 3 times for a short period of time in the whole video.
The code that i am using :
ffmpeg
-i Kaalakaandi.mkv
-map 0
-vf "drawtext=enable='between(t,600,660)':fontsize=20: \
fontfile=C:\Windows\Fonts\arial.ttf:
text='For More Visit Movienow.me':
x=w-tw-10:
y=h-th-10" -c:
v libx264 output.mkvBut I am getting this error :
At least one output must be specified
-
ffmpeg opening video file at lower bitrate
23 février 2018, par Xeno BossI have a php page which runs ffmpeg from shell with the exec() function as follows
ffmpeg -i rtsp://address:port/stream -b:v 512k output.mp4
and since many people could visit the page at once it could fire up many ffmpeg processes for different rtsp streams simultaneously which will eat up my bandwidth.
Is there some way for me to reduce the bitrate at which the streams are opened ?Note : I assumed the bitrate is the most effective factor for reducing bandwidth, please correct me if you have any better suggestions.