Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (53)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP 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 (7725)

  • How to keep the file size of a stream small and have manycam show a live picture ?

    31 janvier 2017, par P. Dee

    I am using this command

    ffmpeg -i "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov" "C:\wamp\www\streaming.mjpeg"

    to stream to "C :\wamp\www\streaming.mjpeg". Then I am using SimpleHTTPServer to create a web server for this folder.

    Then I am pointing manycam’s ip camera to the address of the file on the web server

    http://127.0.0.1:8000/streaming.mjpeg

    And select it in manycam.

    As a result ffmpeg creates a file that gets bigger and bigger and manycam shows an endless time-lapsed loop of what the camera records or recorded minutes ago.

    How to keep the file size small and have manycam show a live video feed ?

  • Concat 2 H264 mov into mp4 using ffmpeg or other ?

    19 septembre 2013, par pixelwiz

    We recently bought a JVC GY-HM650U camcorder. One of the things it can do is record into a "web" format at the same time it records HD. However, the problem we've ran into is that it splits up the recording about every 30 minutes. I've contacted the manufacturer and they might fix the firmware in the future, but I need to do something about it now. So the camera produces an MOV file, but it's supposed to be a H.264 mp4 under the surface. I tried to follow the steps here : http://ffmpeg.org/trac/ffmpeg/wiki/How%20to%20concatenate%20%28join,%20merge%29%20media%20files but was not successful. I can either merge the two files into one mov, and if I try to play the MOV in JWPlayer for some reason I lose the audio. If I try to go into a .mp4 I get an error. I found some 3rd party software for joining video files without having to re-encode them if they are already encoded the same way, but none proved successful at producing a playable file with audio. Any suggestions ?

  • Static ffmpeg library windows

    29 novembre 2022, par peter

    Im trying to use the ffmpeg libraries (libavutil, libswscale, ...) in a bigger project by statically linking them, im not interested in the binaries. Now the issue comes down to getting them statically built. I tried searching for pre-compiled builds but without success.

    


    Following the docs, i compiled them on wsl2 for win64 with

    


    ./configure --arch=x86_64 --target-os=mingw32 --cross-prefix=i686-w64-mingw32- --disable-shared --enable-static
make


    


    After that i copied the libavformat/libavformat.a as libavformat.lib (which should be fine since they are cross-compiled ar archives ?) into my project and linked them with CMake.

    


    When compiling smth like

    


    AVFormatContext* pFormatContext = avformat_alloc_context();


    


    i get a linker error saying

    


    lld-link : error : undefined symbol: avformat_alloc_context


    


    When looking at the libs with dumpbin -linkermember libavformat.lib, i can see

    


    >dumpbin -linkermember libavformat.lib
...
  135CD92 _avformat_alloc_context
...


    


    notice the underscore.

    


    Can i not link the cross-compiled *.a files directly into a windows executable ?

    


    Honestly at this point any ideas are welcome.

    


    Thanks