
Recherche avancée
Autres articles (33)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (6162)
-
Anomalie #3181 (Nouveau) : mots et groupes - API d’édition des objets
7 mars 2014, par Sylvain LesageLes fonctions d’action du plugin mots ne semblent pas suivre les mêmes règles que l’API d’édition des objets, ce qui en permet pas d’utiliser ces fonctions génériques pour les mots ou les groupes de mots (me semble-t-il). Est-il envisageable de les adapter au format défini par l’API ?
Insertion¶
API : objet_inserer
bool | int objet_inserer( string $objet , int $id_parent = null , array | null $set = null )
Mot : mot_inserer
int | bool mot_inserer( int $id_groupe )
Groupe de mots : groupemots_inserer
int | bool groupemots_inserer( string $table = ’’ )
Modification¶
API : objet_modifier
mixed | string objet_modifier( string $objet , int $id , array | null $set = null )
Mot : mot_modifier
string | null mot_modifier( int $id_mot , array | null $set = null )
Groupe mots : groupemots_modifier
string | null groupemots_modifier( int $id_groupe , array | null $set = null )
-
Use an IP-camera with webRTC
11 avril 2016, par MinzI want to use an IP camera with webrtc. However webrtc seems to support only webcams. So I try to convert the IP camera’s stream to a virtual webcam.
I found software like IP Camera Adapter, but they don’t work well (2-3 frames per second and delay of 2 seconds) and they work only on Windows, I prefer use Linux (if possible).
I try ffmpeg/avconv :
-
firstly, I created a virtual device with v4l2loopback (the command was :
sudo modprobe v4l2loopback
). The virtual device is detected and can be feed with a video (.avi) with a command like :ffmpeg -re -i testsrc.avi -f v4l2 /dev/video1
-
the stream from the IP camera is available with :
rtsp://IP/play2.sdp
for a Dlink DCS-5222L camera. This stream can be captured by ffmpeg.
My problem is to make the link between these two steps (receive the rstp stream and write it to the virtual webcam). I tried
ffmpeg -re -i rtsp://192.168.1.16/play2.sdp -f video4linux2 -input_format mjpeg -i /dev/video0
but there is an error with v4l2 (v4l2 not found).Does anyones has an idea how to use an IP camera with webRTC ?
-
-
How to convert from AV_PIX_FMT_BGRA to PIX_FMT_PAL8 ?
29 juillet 2014, par JonaI’m having a hard time converting my images from
AV_PIX_FMT_BGRA
toPIX_FMT_PAL8
. Unfortunatelysws_getCachedContext
doesn’t support the conversion toPIX_FMT_PAL8
.What I’m trying to do is convert my images into a GIF video with higher quality output. It seems that
PIX_FMT_PAL8
could potentially provide the higher quality output I’m looking for.According to this documentation I need to palettize the pixel data, but I have no clue how to do that.
When the pixel format is palettized RGB (
PIX_FMT_PAL8
), the palettized
image data is stored inAVFrame.data[0]
. The palette is transported in
AVFrame.data[1]
, is 1024 bytes long (256 4-byte entries) and is
formatted the same as inPIX_FMT_RGB32
described above (i.e., it is
also endian-specific). Note also that the individual RGB palette
components stored inAVFrame.data[1]
should be in the range 0..255.
This is important as many custom PAL8 video codecs that were designed
to run on the IBM VGA graphics adapter use 6-bit palette components.Any help or direction would be appreciated.