Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (107)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (11725)

  • flac and metaflac : Don’t always call setlocale() in Windows.

    19 juillet 2014, par Erik de Castro Lopo
    flac and metaflac : Don’t always call setlocale() in Windows.
    

    Windows (MSVC, MinGW) versions of setlocale don’t care about LC_*
    environment variables. For example, flac cannot pass the test for
    — until and —skip options the script calls it with —skip=0:01.1001
    and it expects decimal comma (—skip=0:01,1001) on some locales.

    Solve this (on Windows) by calling setlocale(LC_ALL, "") if some
    LC_* variable is set to "C".

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/flac/main.c
    • [DH] src/metaflac/main.c
  • Gstreamer errors when streaming on windows

    19 juillet 2014, par user2656632

    I tried to streaming video by gstreamer using this :

    Sender :

    gst-launch ksvideosrc ! ffmpegcolorspace ! ffenc_mpeg2video gop-size=1 ! mpegtsmux ! rtpmp2tpay ! udpsink host=127.0.0.1 port=5000

    Receiver :

    gst-launch udpsrc port=5000 caps="application/x-rtp, media=video, clockrate=90000, encoding-name=MP2TS" ! rtpmp2tdepay ! ffdemux_mpegts ! ffdec_mpeg2video ! ffmpegcolorspace ! directdrawsink

    It works, but wrong. I got very low fps and I got this output :

    0:00:01.583091000 19496   02404840 ERROR                 ffmpeg .:0:: invalid mb
    type in I Frame at 33 21
    0:00:01.590091000 19496   02404840 ERROR                 ffmpeg .:0:: Warning MV
    s not available
    0:00:20.763188000 19496   02404840 ERROR                 ffmpeg .:0:: invalid mb
    type in I Frame at 33 21
    0:00:20.764188000 19496   02404840 ERROR                 ffmpeg .:0:: Warning MV
    s not available
    0:00:20.816191000 19496   02404840 ERROR                 ffmpeg .:0:: skipped MB
    in I frame at 7 22
    0:00:20.817191000 19496   02404840 ERROR                 ffmpeg .:0:: Warning MV
    s not available
    0:00:20.847192000 19496   02404840 ERROR                 ffmpeg .:0:: skipped MB
    in I frame at 24 19
    0:00:20.949198000 19496   02404840 ERROR                 ffmpeg .:0:: skipped MB
    in I frame at 3 20
    0:00:20.970199000 19496   02404840 ERROR                 ffmpeg .:0:: invalid mb
    type in I Frame at 36 19
    0:00:20.982200000 19496   02404840 ERROR                 ffmpeg .:0:: skipped MB
    in I frame at 14 20
    0:00:21.007202000 19496   02404840 ERROR                 ffmpeg .:0:: slice mism
    atch
    0:00:21.031203000 19496   02404840 ERROR                 ffmpeg .:0:: skipped MB
    in I frame at 13 20
    0:00:21.060205000 19496   02404840 ERROR                 ffmpeg .:0:: skipped MB
    in I frame at 31 24

    How I can fix these issues ?

  • WebRTC Experiment : Chrome windows audio not sync

    10 juillet 2014, par putoshop

    I tried to make the audio work for Chrome using this Git Repo, but I’m having a sync problem with video and audio. The audio finished playing earlier. The video seems to be correct. I noticed that when I play the blob, the audio is playing fast.

    I was able to make the audio work by commenting the line the throws error in the condition that check if sampleRate is less than 22050 or greater than 96000 in RecordRTC.js.

    I tried to adjust the sampleRate other values and noticed that If the sampleRate is low, the audio plays slow and if the sampleRate is high, the audio plays fast. I was able to make the audio and video somewhat sync but it seems the pitch of the audio becomes noticeable lower than the expected pitch.

    I’ve also tried FFMPEG to adjust the length of the audio to match the video length, but didn’t been able to make it work.

    the extensions of the files that are uploaded to the server for Chrome are .webm(video) and .wav(audio).