Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (85)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (10312)

  • FFmpeg RTSP problem with IP camera

    22 avril 2014, par NoviceAndNovice

    I download FFmpeg windows binary and use ffplay.exe successfully for media files and some Ip Cameras with RTSP support (eg Acti).

    I try ffplay on a Bosch( h264) NDC 265 P camera it does not work. When i start ffplay with debug option i get folllowing

    D:\Test>ffplay -debug 1 rtsp:/XXXXXXXXXX/video
    FFplay version SVN-r26400, Copyright (c) 2003-2011 the FFmpeg developers
     built on Jan 18 2011 04:09:28 with gcc 4.4.2
     configuration: --enable-gpl --enable-version3 --enable-libgsm --enable-libvorb
    is --enable-libtheora --enable-libspeex --enable-libmp3lame --enable-libopenjpeg
    --enable-libschroedinger --enable-libopencore_amrwb --enable-libopencore_amrnb
    --enable-libvpx --disable-decoder=libvpx --arch=x86 --enable-runtime-cpudetect -
    -enable-libxvid --enable-libx264 --enable-librtmp --extra-libs='-lrtmp -lpolarss
    l -lws2_32 -lwinmm' --target-os=mingw32 --enable-avisynth --enable-w32threads --
    cross-prefix=i686-mingw32- --cc='ccache i686-mingw32-gcc' --enable-memalign-hack
    --enable-shared --disable-static
     libavutil     50.36. 0 / 50.36. 0
     libavcore      0.16. 1 /  0.16. 1
     libavcodec    52.108. 0 / 52.108. 0
     libavformat   52.93. 0 / 52.93. 0
     libavdevice   52. 2. 3 / 52. 2. 3
     libavfilter    1.74. 0 /  1.74. 0
     libswscale     0.12. 0 /  0.12. 0
    [rtsp @ 006db540] SDP:
    v=0
    o=- 0 0 IN IP4 XXXXXXXXXX
    s=LIVE VIEW
    t=0 0
    c=IN IP4 0.0.0.0
    m=video 0 RTP/AVP 35
    a=rtpmap:35 H264/90000
    a=control:rtsp://XXXXXXXXXX/video
    a=recvonly
    a=fmtp:35 packetization-mode=1;profile-level-id=4d0028;sprop-parameter-sets=Z00A
    KI2NKAoAt2AgEA==,aO48gA==

    [rtsp @ 006db540] video codec set to: (null)
    [rtsp @ 006db540] hello state=0
    [rtsp @ 006db540] Probe buffer size limit 5000000 reached
    [rtsp @ 006db540] Estimating duration from bitrate, this may be inaccurate
    Input #0, rtsp, from 'rtsp:/XXXXXXXXXX/video':
     Metadata:
       title           : LIVE VIEW
     Duration: N/A, start: 0.000000, bitrate: N/A
       Stream #0.0, 4035, 1/90000: Video: [0][0][0][0] / 0x0000, 90k tbr, 90k tbn,
    90k tbc
    rtsp:/XXXXXXXXXX/video: c1o3u0l1d7 3n2o1t5 2o.p2e1n  Ac-oVd:e c s0
    .000 s:0.0 aq=    0KB vq=    0KB sq=    0B f=0/0

    I can play Bosch IP camera with VLC Player...But can not with FFmpeg...

    So

    • Does ffmpeg not support H264 ?
  • SDL_AudioSpec call back function, different threads

    22 avril 2014, par RoeeL

    I currently have a video player that can only play one video at a time. I’m trying to modify it so it can play several videos at the same time but I did notice a problem.

    given the following code :

     SDL_AudioSpec spec;
     ...
     spec.callback = audio_callback;
     spec.userdata = data;

    If I want to run one more video at a time I need 2 more threads - one for the video & one for the audio. The problem is that SDL passes to my ’audio_callback’ only the recent ’data’. Means, If ’A’ thread placed his data in ’spec.userdata’ and then thread ’B’ places his data in spec.userdata (Even though both are totally different variables - not global) - SDL Will still pass only B’s data to my audio_callback function => no sound in video ’A’ and terrible sound in video ’B’

    Any suggestions ?

  • ffprobe select audio and video streams

    14 avril 2017, par Amin Fazlali

    I use this code for extracting video information using ffprobe :

    ffprob -show_streams -of json -v quite -i input.mp4

    The information of all streams appears in the output while I need only the information of v:0 and a:0 streams.

    I know that there is -select_streams option for stream selection but it accept only one argument like : -select_streams v:0.

    Can I use -select_streams by two arguments v:0 and a:0 or using it twice ?