
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (24)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
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 (6897)
-
how to use ffmpeg to cache a stream
17 septembre 2018, par Marceli am using the following command to copy a live stream and restream it to a different endpoint. This works Ok , but the problem is that the stream breaks up/buffer occurs on client/stuttering and does not run smoothly or even fails.
Here is the command i am usingffmpeg -loglevel fatal -fflags +igndts -re -i "$1" -acodec copy -vcodec copy -tune zerolatency -f mpegts pipe:1
$1 is an mpegts http stream url
what will be the correct command to use for ffmpeg to "cache" few seconds of the input stream (input is mpegts) before emitting the stream out as is ? I hope by caching i can get a smooth playback , no stuttering or buffering on the client side.
thanks for help !!
-
Handling Unknown encoder with ffmpeg hardware acceleration
23 septembre 2018, par GabrielleI am having a heavy use of CPU from ffmpeg to record my screen.
To solve this, I am trying to use hardware acceleration. The problem is that my program is intended to run in different platforms...
I would like to know if there is a way to say "use any hardware acceleration available or none if none is available"...
I tried to use
-c:v h264_nvenc -allow-sw 1
in hope that, since I was testing on a Mac and I don’t have this encoding, the software encoding would be used instead, but this did not happened, instead, the entire command crashed. -
ffmpeg "Automatic encoder selection failed for output stream"
6 octobre 2018, par polmonroigI am trying to convert a video file from mp4 to exr but I am getting this error with this command in ffmpeg.
Command
ffmpeg -i 'video.MP4' 'video.%04d.exr'
Error
Automatic encoder selection failed for output stream #0:0. Default encoder for format image2 (codec exr) is probably disabled. Please choose an encoder manually.
Error selecting an encoder for stream 0:0I hope someone can help me, I am really lost.
Thank you !