Recherche avancée

Médias (91)

Autres articles (111)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le 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, par

    The 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, par

    Les 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 Balint
    ffplay : 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>

    • [DH] ffplay.c
  • error : member access into incomplete type 'AVFormatInternal'

    14 janvier 2021, par Orest

    I hav eroor in ffmeg lib&#xA;error : member access into incomplete type 'AVFormatInternal'&#xA;I try to do this

    &#xA;&#xA;

    AVFormatContext *s;&#xA;s->internal->raw_packet_buffer;&#xA;

    &#xA;&#xA;

    In libav examples it works.&#xA;What i doing wrong ?

    &#xA;

  • Unable to access device camera using ffmpeg : Permission error

    14 mars 2016, par Parth Doshi

    I 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 denied

    How 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 ?