Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (39)

  • 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • 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 (...)

Sur d’autres sites (7894)

  • shorten : Use a checked bytestream reader for the wave header

    11 septembre 2013, par Martin Storsjö
    shorten : Use a checked bytestream reader for the wave header
    

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/shorten.c
  • Construct mp4 file from audio buffer and video buffer C++ Windows

    9 août 2015, par Kaidul Islam

    Currently I am receiving video stream(H264 encoded buffer) and audio stream(PCMU encoded buffer) from remote end from which I can decode and render these as audio and video. Now I want to provide some APIs like -

    string fileName = "dir/dir2/..../rec.mp4";
    startRecord()
    stopRecord()

    User can start recording from any time and stop recording and the video & audio stream will be written as combined mp4 file. I can use ffmpeg by which I can merge a .h264 and .wav file as .mp4 file. But I want to do it programmatically directly from streams(not .h264 or .wav file) using any library or write my own. Is it possible ?

  • ffmpeg windows, multiple displays

    2 septembre 2013, par user2739557

    I have a windows 7 setup with extended desktops (ie say two). I would like to capture
    everything on desktop 1 in a separate file and everying on desktop 2 in a separate file.
    At present I use

    ffmpeg -f dshow -r 30 video="UScreenCapture":audio="Microphone Array (IDT High Defi" test.flv

    which captures everything on both desktops simultaneously. Are there any options one can pass to limit this to say one Desktop ?

    Now solved as follows : use the crop video filter to extract the desktops 1 and 2. Assuming the two displays are 1024x768 then the following seems to work and create two files
    for the left and right displays

    ffmpeg -f dshow -r 30 video="UScreenCapture":audio="Microphone Array (IDT High Defi" -vf crop=1024x768:0:0 left.flv -f dshow -r 30 video="UScreenCapture":audio="Microphone Array (IDT High Defi" -vf crop=1024x768:1024:0 right.flv