
Recherche avancée
Autres articles (43)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...) -
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 (7192)
-
Setting up rtsp stream on Windows
12 novembre 2015, par ChrisI am trying to set up an rtsp stream that can be accessed from an application. I have been experimenting with ffmpeg to realize that. I have succeded as far as I was able to stream from ffmpeg to ffplay but I could not load the stream in vlc for example. Here are the calls that I did from two different shells on the same machine :
ffmpeg.exe -y -loop 1 -r 24 -i test_1.jpg -vcodec libx264 -tune stillimage -f rtsp rtsp://127.0.0.1:1234/stream.sdp
ffplay.exe -rtsp_flags listen rtsp://127.0.0.1:1234/stream.sdpCan anybody explain to me what I would have to do to load the stream as a network stream using vlc ? Any help is appreciated.
-
Compiling ffmpeg for android on windows OS
22 octobre 2015, par Srini5After searching a lot on web I didn’t got any proper tutorial which can explain step by step approach of compiling ffmpeg for android on a windows OS. Lots of people suggested to drop windows and compile it on a Ubuntu machine. And I got many tutorial on how to compile on a Linux based machine using android NDK. Is there any tutorial or blog post which can explain how to do it on a windows machine. Or anybody know how to do the same in a windows machine.
-
ffmpeg on windows 'Could find no file' error
14 octobre 2015, par BrooksThis is my command :
"C:\...\ffmpeg.exe" -i "C:\...\audio.mp3" -r 1 -i "C:\...\%%d5.jpg" -qscale:v 1 -shortest -s:v 1280x720 -y -r 30 -pix_fmt yuv420p -filter_complex "[0:a]volume=1[aout]" -map 1:v -map "[aout]" "C:\...\video1.mp4"
this is the error I get everytime :
I’ve searched on google and found various answers so I tried with
%%d5
%%5d
%d5
%5d
with no luck. (my files are named 00000.jpg, 00001.jpg ..., 00005.jpg)What am I doing wrong ?