
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (111)
-
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 : (...)
Sur d’autres sites (13128)
-
ffplay : fix sws_scale possible out of bounds array access
10 décembre 2016, par Marton Balintffplay : fix sws_scale possible out of bounds array access
As I used simple RGBA formats for subtitles and for the video texture if
avfilter is disabled I kind of assumed that sws_scale won’t access data
pointers and strides above index 0, but apparently that is not the case.Fixes Coverity CID 1396737, 1396738, 1396739, 1396740.
Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Marton Balint <cus@passwd.hu> -
error : member access into incomplete type 'AVFormatInternal'
14 janvier 2021, par OrestI hav eroor in ffmeg lib
error : member access into incomplete type 'AVFormatInternal'
I try to do this



AVFormatContext *s;
s->internal->raw_packet_buffer;




In libav examples it works.
What i doing wrong ?


-
Unable to access device camera using ffmpeg : Permission error
14 mars 2016, par Parth DoshiI am using a FFMPEG java wrapper for Android through which I am able to run any ffmpeg commands.
I have given my Android application the camera permission and the write external storage permission but ffmpeg is not able to access the device camera.
I am getting the following error when I run the command
ffmpeg -re -f fbdev -r 10 -i /dev/graphics/fb0 -c copy -f flv rtmp://192.168.1.35:1935/app2/myStream
Error: Could not open framebuffer device '/dev/graphics/fb0': Permission deniedHow do I provide ffmpeg with camera access permission. I have tried giving
chmod 777 /dev/graphics/fb0
but that does not work.Can someone tell me a solution for this ?