
Recherche avancée
Autres articles (86)
-
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 ;
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)
Sur d’autres sites (5745)
-
VLC/FFMPEG streaming, how to detect ?
22 novembre 2011, par John SmithI want something like that : user(s) decide to start a stream to my site. I know VLC and FFMPEG is able to do that. But how could a site detect that it's getting stream(s) ? Because I want it to then display on a page "current live videos". And what kind of streams should I need to use ? HTTP ? RTSP ? UPD ?
Thanx in advance.
-
FFMPEG makes my server crash
10 décembre 2011, par user997735I have a youtube mp3 converter site, and to do this I am using FFMPEG.
The problem is that the FFMPEG is using 100% CPU when there are some converting process together, so users can't access my site until the processes are finished.
How can I limit the CPU usage of FFMPEG ? Is there another solution to solve my problem ?
-
FFmpeg droplet on Windows (converting EXR sequences to mp4)
6 mars 2018, par KnKI’m trying to create a little droplet on my desktop in windows10 that creates mp4 files out of exr sequences. My idea would be to drag the first frame of the sequence and the droplet would recognize the sequence and cook a nice mp4 video out of it.
My source sequence usually look like this :
render.0001.exr
render.0002.exr
render.0003.exr
etc.So far I’m doing this completely manually by typing this to a command line :
ffmpeg.exe -gamma 2.2 -i render.%04d.exr -q:v 0 -r 25 video.mp4
This command creates a nice quality gamma 2.2 mp4 which is perfect but manually setting it is obviously a hassle.
After a little google-ing I’ve found this droplet :
ffmpeg.exe -i %1 -y %~n1_preview.mp4
Which is brilliant but doesn’t recognize file sequences so if I drop multiple files on it it will create single frame mp4 files. I guess it is missing the %04d but I have no idea where to put it or whether it needs some other parameter to work properly.
Do you guys and girls have any idea how to format this droplet properly ? It would be a huge timesaver.
Thanks in advance !