
Recherche avancée
Autres articles (64)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
MediaSPIP en mode privé (Intranet)
17 septembre 2013, parÀ partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)
Sur d’autres sites (5090)
-
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
-
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
-
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