Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (30)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Les statuts des instances de mutualisation

    13 mars 2010, par

    Pour des raisons de compatibilité générale du plugin de gestion de mutualisations avec les fonctions originales de SPIP, les statuts des instances sont les mêmes que pour tout autre objets (articles...), seuls leurs noms dans l’interface change quelque peu.
    Les différents statuts possibles sont : prepa (demandé) qui correspond à une instance demandée par un utilisateur. Si le site a déjà été créé par le passé, il est passé en mode désactivé. publie (validé) qui correspond à une instance validée par un (...)

Sur d’autres sites (5120)

  • Unknown input format : 'x11grab'

    5 juillet 2017, par jjh

    guys :

    I have problems when i compile ffmpeg and run ffmpeg in linux.

    My environment :

    1 : ubuntu 17.10_x64_bit(i don’t think the os version is the key)

    2 : gcc (Ubuntu 6.3.0-19ubuntu1) 6.3.0 20170618

    3 : ffmpeg open source code:3.2

    first, i download the source code from ffmpeg official site. I compile this project with there instructions:

    ./configure --prefix=/home/jjh/software/ffmpeg --enable-shared
    make
    make install

    and it worked without any error except some warning, then i run :

    ./ffmpeg -h

    i make sure that it works and output normally.

    but i want use ffmpeg to grabbing screen. so i use this construction(o) :

    ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0 /tmp/out.mpg

    then output error :

    Unknown input format: 'x11grab'

    i want to re-compile this project with —enable-x11grab option, btw , so many solution tell me to to this. but when i add this option, i get some errors :

    Invalid option --enable-x11grab

    some people says that i should install some libs :

    libxfixes-dev
    sudo apt-get install libxext-dev

    so i installed these libs, but it always show this error. pls help me.

  • FFMpeg, rtsp cameras and series of bad framses

    21 avril 2022, par Denis Gottardello

    I have a problem with ffmpeg and rtsp cameras.
As you can see in the screenshot below

    


    enter image description here

    


    sometimes a serie of damaged frames come.
It is not a problem related to camera. The date and time is unreadable and the problem happens with different vendors of camera, with differen pcs and in different places.With the official software the live is perfect.
I'm trying with the lates ffmpeg source (5.0.1) in a Debian 11 machine.
I'm particolar intertested in this problem because I have written a software based on ffpmeg library and I have the same problem (using ffmpeg as library), in bouth Windows and Linux.

    


    This is the command line to record

    


    

    

    ./ffmpeg -i rtsp://192.168.1.11:554/onvif1  a.avi

    


    


    



    What can I do to resolve ?

    


  • ONVIF Device Manager API and Decoder

    10 juillet 2023, par spiderelite

    I'm working on the source code of the onvif device manager software and I want to find the Api and decoder it uses.

    


    I first separated the odm.player part of the code into another solution and built it separately. the separated part contains these parts from the source code (in order of execution) :

    


    utils.linq
utils.diagnostics
utils.common
odm.player.lib
odm.player.media
live555
odm.player.net
utils.xml
utils.bootstrapping
odm.player.host


    


    Im tring to find the decoder and Api it uses(in the above parts) to decode the media. i need to find the specific part of the program to contain some information from a decoder.

    


    I know the source code is using ffmpeg and live555 libraries but I need to find their use and API in the odm.player part.

    


    I checked odm.player.host because it is the last project and depends on previous ones, but didn't find anything.

    


    what should i do next ? is there any official documentation of the API ? is there any important keyword related to ffmpeg that can I search it in the code ?