
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (70)
-
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 ;
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (9594)
-
How to increase conversions to meet your business goals
8 septembre 2020, par Joselyn Khor — Analytics Tips, Marketing -
Mixing two live streams like picture in picture from 2 obs using FFmpeg
4 septembre 2020, par ArguI am trying to get live streams from 2 OBS and do picture in picture using FFMPEG. But I am getting error as : ' Cannot open connection tcp ://127.0.0.1:1935 ?listen&listen_timeout=-1000
rtmp ://127.0.0.1:1935/obs/test : Immediate exit requested'. I think this is because of IP adresses. Can someone help me with guiding me to what IP's to add and also with the overlay command.


-
avformat_open_input() error -1330794744 : Could not open input
22 mai 2014, par NavidWhen I run my code on unix (postproc removed) :
FFmpegFrameGrabber frameGrabber = new FFmpegFrameGrabber("https://.../ec769038-22d9-4da9-a7bf-dd4647f97964-353.mp4?__h__=1400667080_dfb4fabf293d258cd501ab4978419392");
IplImage capturedImage = null;
try {
frameGrabber.start();
long lengthInTime = frameGrabber.getLengthInTime();
long i = 0;
while(i < lengthInTime) {
frameGrabber.setTimestamp(i);
capturedImage = frameGrabber.grab();
// if capturedImage is null ... error
if(capturedImage == null)
break;
LOG.info("frame: " + i + " " + capturedImage.depth());
i += 10 * 1000 * 1000; // microseconds
}
frameGrabber.stop();
frameGrabber.release();
} catch (Exception e) {
LOG.error(e.getMessage());
}I get this error :
avformat_open_input() error -1330794744: Could not open input "https://.../ec769038-22d9-4da9-a7bf-dd4647f97964-353.mp4?__h__=1400667080_dfb4fabf293d258cd501ab4978419392". (Has setFormat() been called?)
I am running the program in Red Hat Same code works with local file path.
I know URL works because the same code (but postproc not excluded) works in Windows.
I am using Javacv 0.5 both in Red Hat and Windows (that’s the only choice I have at work)