
Recherche avancée
Autres articles (47)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8679)
-
how to install portaudio19-dev and ffmpeg on ubuntu WSL
28 mai 2021, par Joshua Aldrich EdbertI'm a windows user trying to run a command from ubuntu 20.04 LTS release on windows.


sudo apt-get install gcc portaudio19-dev python3-dev ffmpeg



After asking me to input a password, the terminal showed :


reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package portaudio19-dev
E: Unable to locate package ffmpeg



I'm not sure what happened as I'm new to this world. Any help would be appreciated !


-
Capture live video from a camera on a computer and using ffmpeg
21 juin 2013, par DevendraI am trying to capture live video from a camera on a computer and using ffmpeg as an encoder, send this video for live streaming to a IIS server.
Here is what I did :
-
Captured feed from webcam using video4linux2 and ffmpeg
-
Installed x264 for a h.264 codec
-
Used muxer feature in ffmpeg, as described on this link -
http://www.ffmpeg.org/ffmpeg-formats.html#Muxers
to generate ismv file locally
Command -
ffmpeg -f video4linux2 -r 25 -s 640x480 -i /dev/video0 -b:v 661k -c:v libx264 -movflags isml+frag_keyframe+empty_moov -f ismv test.ismv -
Now to get the complete system in place (live capture from webcam and live streaming on IIS server), I want ffmpeg to generate this ffmpeg file on a publish point. here is the command I used
ffmpeg -f video4linux2 -r 25 -s 640x480 -i /dev/video0 -b:v 661k -c:v libx264 -movflags isml+frag_keyframe+empty_moov -f ismv http://www.MY-SERVER/PushToPublishPoint/Test.isml
as described at this link :
http://www.unified-streaming.com/support/documentation/content-delivery/publishing-points/
http://www.unified-streaming.com/support/documentation/content-encoding/encoders/It shows some video is being generated, but I cannot see any activity at the server.
When I use wireshark to look at the packet info, there are many packet transfers between pc and the server.
I have kept publishing point in IDLE state, STARTING state to see if that is the problem, but no progress there as well.
I think I am unable to establish communication with the server. Pls help.Any help would be appreciated.
Thanks
-
-
How to find currently streaming file in ffmpeg stream that uses a file list
27 février 2021, par DigitalDisasterI am using ffmpeg to stream to an RTMP server. I am using the option to provide ffmpeg a text file with a list of files to stream. My file looks like this :


ffconcat version 1.0
file 'stream_file1.flv'
file 'stream_file2.flv'
file 'stream_file3.flv'



It loops through these files while streaming. Is there a way to programmatically find out when ffmpeg switches between each file ? Either from ffmpeg dumping some logs that I can injest, or by using python to check the state of the stream every second ?