
Recherche avancée
Autres articles (45)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...) -
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 (...)
Sur d’autres sites (6425)
-
How to remove/reduce pixelation of mjpeg stream in FFMPEG
10 janvier 2017, par Luis RuizI’m working on a server side re-streaming service for some IP Cameras.
I’m using ffserver on Linux to serve the streams and ffmpeg on Windows to feed.
I’m getting the cameras video (H264) using rtsp.My ffserver config example is as follows
<feed>
File ./test.ffm
</feed>
<stream>
Feed test.ffm
Format mpjpeg
VideoFrameRate 3
VideoSize 704x480
NoAudio
FileMaxSize 100k
VideoHighQuality
</stream>and the way ffmpeg is feeding :
ffmpeg -rtsp_transport tcp -i "rtsp://admin:admin@192.168.1.12:554/cam/realmonitor?channel=1&subtype=0" -vcodec copy -acodec copy "http://192.168.1.101:8090/test.ffm"
Resulting video is Very pixelated and it differs from the real image.
Cameras’ configuration are as follows :
Resolution: D1 (704*480)
FrameRate: 3
BitRate: 256k
BitRateType: VariableIs there anything i’m missing or doing wrong ?
Thanks in advance for any help
-
How to remove/reduce pixelation of mjpeg stream in FFMPEG
25 juillet 2017, par Luis RuizI’m working on a server side re-streaming service for some IP Cameras.
I’m using ffserver on Linux to serve the streams and ffmpeg on Windows to feed.
I’m getting the cameras video (H264) using rtsp.My ffserver config example is as follows
<feed>
File ./test.ffm
</feed>
<stream>
Feed test.ffm
Format mpjpeg
VideoFrameRate 3
VideoSize 704x480
NoAudio
FileMaxSize 100k
VideoHighQuality
</stream>and the way ffmpeg is feeding :
ffmpeg -rtsp_transport tcp -i "rtsp://admin:admin@192.168.1.12:554/cam/realmonitor?channel=1&subtype=0" -vcodec copy -acodec copy "http://192.168.1.101:8090/test.ffm"
Resulting video is Very pixelated and it differs from the real image.
Cameras’ configuration are as follows :
Resolution: D1 (704*480)
FrameRate: 3
BitRate: 256k
BitRateType: VariableIs there anything i’m missing or doing wrong ?
Thanks in advance for any help
-
FFmpeg permission denied
22 septembre 2016, par nikoz84I’m try to execute this PHP code
exec("/root/bin/ffmpeg -version 2>&1", $output);
print_r($output);But always the output return permission denied
Array ( [0] => sh: /root/bin/ffmpeg: Permission denied )
and the output from library PhpVideoToolKit
sh: /root/bin/ffmpeg: Permission denied
how can i give permission for execute to my apache service ? i’m used CENTOS