
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (27)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (3400)
-
c# - best way stream images to a remote server ?
29 avril 2014, par shikataI want to stream the user screen (of the computer using C# app) to a remote server (PHP) through an FLV player or any other way.
I take a screenshot each 1 seconds, send it as base64 data to the remte server, then save it as X.jpg on the remote server, where X is an incrementing number.
Once I reach 100 images, I use the command below in order to convert the images into a video :
exec('ffmpeg -y -r 2 -f image2 -i img%d.jpg -r 20 temp.flv 2>&1 >/dev/null', $output, $exit_status);
Once the video is created, I display it to the user and delete all files, then repeat the process again, and again in order to keep streaming.
This way doesn’t really work as expected and it has a lot of drawbacks.
Is there any alternative way I can broadcast the taken screenshots to the remote client in his browser without having to convert the images to a video and play it and keep on repeating this process ??
-
best way stream images to a remote server ?
30 avril 2014, par shikataI want to stream the user screen (of the computer using C# app) to a remote server (PHP) through an FLV player or any other way.
I take a screenshot each 1 seconds, send it as base64 data to the remte server, then save it as X.jpg on the remote server, where X is an incrementing number.
Once I reach 100 images, I use the command below in order to convert the images into a video :
exec('ffmpeg -y -r 2 -f image2 -i img%d.jpg -r 20 temp.flv 2>&1 >/dev/null', $output, $exit_status);
Once the video is created, I display it to the user and delete all files, then repeat the process again, and again in order to keep streaming.
This way doesn’t really work as expected and it has a lot of drawbacks.
Is there any alternative way I can broadcast the taken screenshots to the remote client in his browser without having to convert the images to a video and play it and keep on repeating this process ??
-
Audiopulse record multiple xfbv screens with python
7 octobre 2020, par Eric LagardaI’m trying to do something complicated and I need some help.


I’m able to record a session (video and audio) with python using xvfb and ffmpeg.


I just want to visit a page using selenium and record the video and audio. It’s working but when I try to run multiple instances, the audio is mixing between records.


How can achieve that ? I’m using pulseaudio. I know that with also you can set like a interface per instance, but I don’t know how to do it.


Thanks for you support and comments.