
Recherche avancée
Autres articles (88)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (8048)
-
How to stream all videos in a folder ?
30 mai 2015, par KrishnenduHi i want to stream videos over web using ffserver. i got this link as reference.
Now what i am not able to figure out is how to pass a folder(which content all videos i want to stream) as input to stream all videos. I also want add more videos dynamically to this folder in time to time and streaming should happen(like how it works in Darwin). now i can’t use Darwin because it doesn’t support for iOS.
please give me a suggestion.
is there any other open source tool by which i can do this ?
-
AAC to network using ffmpeg libraries
17 juin 2013, par HaneTVI'm trying to send an aac adts stream to rtp with ffmpeg.
I only know sample rate (22050) and channel (1)
With command line it's quite easy with :ffmpeg -i udp://localhost:xxxx -acodec copy -absf aac_adtstoasc -f rtp rtp://localhost:yyyy
But I need to use the C++ lib instead and I'm quite lost even with examples files in ffmpeg sources. Any help would be apreciated
-
Tailing last frame of a growing video file
9 janvier 2012, par ebayindirOn windows, I have a dynamically created uncompressed avi video file which grows overtime. The application which generates the video file can only write to a physical file. I can start/stop generation of video file and delete the old video file easily.
I would like to analyze the changing last frame of the growing video file to make some decision depending on the content of the current/latest image in real time. If I can achieve more than 10fps it should be enough.
I would like to get uncompressed images whenever a new frame available in the video file.As a file format I think png could be the best options in that case but I am open to alternatives.
I wonder if such a thing is possible with ffmpeg or with a similar tool.I prefer to analyze the image and make decisions by using a perl+Imager module.
Tha analyisis requirements are not complicated. Basically I just need to find existence of a few small images in certain locations inside the last frame.
I would also appreciate if you can suggest an efficient way to get this information in to my application from ffmpeg.
For example piping directly to my code or reading from saved png files.I know perl already has an ffmpeg interface module but as far as I understand that module can't provide the functionality I need.