
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 (78)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (...)
Sur d’autres sites (9040)
-
Create dynamic playlist in ffmpeg
12 octobre 2016, par Ahmad Ali MukashatyI want to stream videos countinuously so I create this playlist (test.txt)
file ’test1.mp4’
file ’test2.mp4’
file ’test3.mp4’
and I use this command in ffmpeg to run playlist
ffmpeg -re -f concat -i test.txt -b:v 2.5M -c:v libx264 -acodec aac -f mpegts udp://127.0.0.1:1234?pkt_size=188&buffer_size=3M
But is there a way to add files to run after this playlist without interrupt streaming or Make the process moves to another playlist When the first one ends
I am looking for any way to stream other movies after playlist finish during the process running (without interrupt streaming)
please help me
-
Stream part of the screen on linux
1er juin 2014, par Boris BrodskiHow can I stream part of my screen using ffmpeg (avconv) on Linux ?
I can record part of my screen :
ffmpeg -f alsa -ac 1 -i pulse -acodec pcm_s16le -f x11grab -r 24 -s 100x200 -i :0.0+20,30 ...
But trying to stream it adding
-f rtp rtp://127.0.0.1:1234
doesn’t work. ffmpeg starts to stream, but ffplay complains
$ ffplay rtp://127.0.0.1:1234
[rtp @ 0xaf8026a0] Unable to receive RTP payload type 96 without an SDP file describing it
[rtp @ 0xaf8026a0] Estimating duration from bitrate, this may be inaccurate
Input #0, rtp, from 'rtp://127.0.0.1:8080':
Duration: N/A, bitrate: N/A
rtp://127.0.0.1:8080: could not open codecs
1401611400.39 A-V: 0.000 s:0.0 aq= 0KB vq= 0KB sq= 0B f=0/0What do I missing ?
-
Unable to run ffmpeg command in string
9 avril 2014, par Yuvraj KakkarI try to run ffmpeg command in java via this string
String cmd="ffmpeg -i rtmp://IP/live/1234 -f flv rtmp://IP/live/1234_56"
Runtime.getRuntime().exec(cmd);The above command execute properly but when I try to execute following command it gives error
String instream="'rtmp://IP/live/1234 live=1'";
String cmd="ffmpeg -i "+instream+" -f flv rtmp://IP/live/1234_56'"
Runtime.getRuntime().exec(cmd);Output >'rtmp ://IP/live/1234 : Invalid argument
The original command that runs directly on ffmpeg is
ffmpeg -i "rtmp://IP/live/1234 live=1" -f flv rtmp://IP/live/1234_56
Kindly suggest how to run
live=1
argument in ffmpeg via String