
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (71)
-
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)
Sur d’autres sites (6786)
-
FFmpeg process killed when press poweroff button
11 avril 2018, par dastanI am using the WritingMinds/ffmpeg-android-java library for ffmpeg. When I press the Power button of Asus T00J (4.4), the ffmpeg process is canceled. How can I prevent process to being killed ?
process = shellCommand.run(cmd);
The only solution I have in my mind is to recompile ffmpeg with all supported libraries in the shared library format (.so) instead of the executable binary and write JNI to access the ffmpeg main method. But it will take so much time. So, I am looking for alternative solutions.
-
Create a rolling X second webcam buffer in Linux, press button saves to file
13 août 2016, par Grant GibsonI’m working on a webcam installation with an ’instant replay’ feature. The concept is basically this :
- Webcam captures live, 24/7
- When user presses a key, the last (previous) 30 seconds of video saves to a file
- I’ll then compress that video using something like FFMPEG and upload to a remote server
I’m fine with step 3 and beyond, but I haven’t been able to find a solution that does the equivalent of a FIFO buffer for video streams [i.e. pretty much what the ’rewind live tv’ buffer on TiVo does].
Does anyone know of a way to keep a rolling webcam video/audio buffer that can be exported to a file ?
Design considerations :
- I’m planning to use a standard webcam, but open to other suggestions
- Recording would ideally be 1080p, 30fps
- Recording must include sound
- Linux hardware and OS can be specified in the answer, there are no existing pre-requisites. Raspberry Pi would be nice if that’s possible, but equally fine with a small Intel machine (e.g. NUC).
- There’s no requirement to save the 24/7 stream, but it’s ok if that’s a by-product. So, storage permitting it can be saving to a file continuously for say 12 hours and just ’cat’ the last 30 secs to a separate file, if that’s an option ? But better would be the 30 sec rolling FIFO buffer that could potentially do the whole job in RAM.
- The ’save instant replay’ button will eventually be a physical pushbutton rather than a keyboard key. However, I’ve got that side of things covered (if the solution is RPi I’d use the GPIO pins, if it’s an Intel box I’d probably use an Arduino in HID mode to simulate a keyboard press).
-
Convert factory-class and factory-method to factory in Services.xml
19 janvier 2016, par K ФI’m using Symfony3 and I noticed that
factory-class
andfactory-method
don’t exist anymore, butfactory
does exist.This is rather frustrating because I would like to use pulse00/ffmpeg-bundle, but the
services.xml
seems to be pre-3.0.As you can see the 4 red marked attributes are the problem :
factory-class="%dubture_ffmpeg.ffmpeg.class%" factory-method="create"
factory-class="%dubture_ffmpeg.ffprobe.class%" factory-method="create"Example(Symfony3 version) :
services:
newsletter_manager:
class: NewsletterManager
factory: [NewsletterManagerFactory, createNewsletterManager]Question :
How do I update the services.xml for it to work correctly with Symfony3 ?
What I have tried :
I have tried combining the two without much success and using
factory
instead. But apparantly "factory" is not allowed either.Errors :
$ php bin/console server:run
The error I am getting :
The attribute ’factory-class’ is not allowed.