
Recherche avancée
Autres articles (91)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur
8 février 2011, parLa visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
Configuration de la boite multimédia
Dès (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (15343)
-
javacv FFmpegFrameGrabber.start() blocked,not run next line
23 août 2017, par L.Uwhen i run grabber.start it blocked,not run next line.
FFmpegFrameGrabber grabber = new FFmpegFrameGrabber("rtsp://admin:123456@192.168.3.2:10554/tcp/av0_0");
grabber.start();
final AtomicBoolean interruptFlag = new AtomicBoolean(false);get console message :
- [rtsp @ 00000000004ec600] CSeq 6 expected, 0
received. - [rtsp @ 00000000004ec600] CSeq 6 expected, 0
received. - [rtsp @ 00000000004ec600] CSeq 6 expected, 0
received. - [rtsp @ 00000000004ec600] CSeq 6 expected, 0
received.
how to resole it ?thanks
- [rtsp @ 00000000004ec600] CSeq 6 expected, 0
-
configure : Remove all C standard versions from the MSVC command line.
25 mars 2020, par Carl Eugen Hoyos -
FFMpeg working in command line but not in PHP script
28 juillet 2016, par Jitendra PrajapatiI am using FFMpeg to convert videos and it is working fine from the command line. I am using the following command :
ffmpeg -i input.avi -ab 56 -ar 44100 -b 200 -r 15 -s 320x240 -f flv output.flv
However, when I run the command using PHP script, the output video is not encoded.
exec("ffmpeg -i input.avi -ab 56 -ar 44100 -b 200 -r 15 -s 320x240 -f flv output.flv",$output, $returnvalue);
$returnvalue = 127;FFMPEG installed path :
[root@localhost ~]# which ffmpeg
/root/bin/ffmpegMy Script Path :
www.domainname.com/core/foldername/ffmpeg.php
Please provide me solution for the same ASAP.
Thank you.