Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (51)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

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

Sur d’autres sites (7541)

  • ffmpeg questions

    23 avril 2015, par QuestionGuy

    I have a problem with ffmpeg and I don’t know how to continue. I have 2 computers :

    Client :

    • Run Ubuntu 14.04
    • FFmpeg installed
    • Use c++ language
    • Features : use ffmpeg to encode h264 video data from webcam of client laptop, then real time streaming to server

    Server :

    • Running Windows 7
    • FFmpeg installed
    • Use c++ language (MFC)
    • Features : Get real time data from client and show it on screen.

    I’ve just connected client to server and they can chat text data together, and I don’t have any idea to make real time video work.

    And my questions are :

    1. [Client] How to get video from webcam on laptop (using ffmpeg code), save it to buffer (raw data), encode it and send to server ?

      I use ffmpeg to get video from wc but it save to file. I really don’t want it. Code is :

      ffmpeg -f v4l2 -framerate 25 -video_size 640x480 -i /dev/video0 output.mkv
    2. [Client] How to get raw data from client, decode it and play it ?

      I have an idea to play it by using directshow in MFC.

  • vp9dsp : add DC only versions for idct/idct.

    22 novembre 2013, par Clément Bœsch
    vp9dsp : add DC only versions for idct/idct.
    

    before :

    time ./avconv -v 0 -nostats -threads 1 -i sintel_vp9_500kbps.webm -f null -
    real 0m11.125s
    user 0m11.059s
    sys 0m0.050s

    time ./avconv -v 0 -nostats -threads 1 -i sintel_vp9_500kbps.webm -f null -
    real 0m10.944s
    user 0m10.819s
    sys 0m0.064s

    after :

    time ./avconv -v 0 -nostats -threads 1 -i sintel_vp9_500kbps.webm -f null -
    real 0m8.153s
    user 0m8.034s
    sys 0m0.050s

    time ./avconv -v 0 -nostats -threads 1 -i sintel_vp9_500kbps.webm -f null -
    real 0m8.038s
    user 0m7.980s
    sys 0m0.039s

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavcodec/vp9dsp.c
  • avformat/rmdec : when reading audio blocks, dont leave holes when reading fails

    9 janvier 2014, par Michael Niedermayer
    avformat/rmdec : when reading audio blocks, dont leave holes when reading fails
    

    The fate test is changed because the reference file depends on the use of
    non cleared data at the very
    end. Alternatively we could upload a new reference file, though that would
    then have to be changed every time the handling of a truncated frame changes
    or theres a change to error concealment, each time adding a new file ...

    Fixes use of uninitialized memory
    Fixed : msan_uninit-mem_7f3c02b81363_2787_RLG2_19.rm
    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/rmdec.c
    • [DH] tests/fate/real.mak