
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (106)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (10910)
-
Can not play local rtsp URL using FFmpeg in iOS
12 juin 2015, par PriyankaI am using
FFmpeg
for streamrtsp
URL in iOS.
I am trying to stream a local url but my app is failed to open url
avformat_open_input
method always return -5I have played the same url
rtsp://172.16.1.226:5544/1
on VLC media player on my iPhone and macbook it works on both.After few research i have found there is some problem with
rtsp_transport
I was using
av_dict_set(&serverOpt, "rtsp_transport", "tcp", 0);
for the server configuration while opening url and the result is can not open feed.When I changed it to
av_dict_set(&serverOpt, "rtsp_transport", "udp", 1);
I am able to open url successfully but I continuously getting error rtsp 1 missing packet and so on.Can anybody help what should be the right configuration while opening a local
rtsp url
usingffmpeg
.
Should i need to updateav_dict_set(&serverOpt, "rtsp_transport", "udp", 1)
Thanks in advance
-
How to pass SWF flashvars in FFmpeg
15 octobre 2014, par scottpatersonI am trying to convert a SWF file to MP4 / AVI via FFmpeg and pass text variables to the SWF file so that the finished video file include the text as part of the video.
I was thinking the syntax would be something like :
ffmpeg -i c :/ffmpeg/test/test.swf ?a=text1&b=text2 -c:v libx264 -c:a libvo_aacenc -ac 2 test.mp4
However FFmpeg returns "Invalid argument" for this.
Does anyone know what the correct syntax would be or if FFmpeg even supports this ? If it doesn’t, what software does ?
This is somewhat similar to what I am trying to do :
How to pass flashvars to standalone flash player
However it has nothing to do with FFmpeg or video conversion.I have done lot’s of searching and can’t find an answer to this.
Thanks !
-
How to pass the output of one program (ffmpeg) to python script ?
8 septembre 2017, par Victor OdouardWhat I would like to do is this :
ffmpeg -i udp://224.10.10.10:15004 -qscale:v 2 sttest%04d.jpg
And then pass the output image paths of this to a python script, which individually takes in the images and manipulates them, as
ffmpeg
is running (eventually I will useffmpy
to callffmpeg
rather than using the command line tool, but for now testing purposes, I’m starting here).I suppose a way to do this would be to look into the directory of the ffmpeg output every time I’ve processed an image to see if there is a new one, and then load that into python (using OpenCV)—and then waiting a certain time interval if there are no new images to process.
But is there a better way of doing this, like sending the paths of the images directly to some sort of queue which the python script can then process one by one ?