Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (63)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (7879)

  • Evolution #3279 : Connaitre la profondeur d’inclusion dans le pipeline styliser

    12 février 2017

    Si on peut avoir une notion de profondeur, ça engloberait donc la notion de "premier appel" (ie : profondeur = 0).
    Mais je suis vraiment pas certain que ça soit une indication pertinente quand même. Est-ce qu’on a cette information déjà au moins ?
    Et donc un appel webmestre à ?page=truc/muche ça devrait sortir une profondeur 0 on est d’accord ?

    Est-ce que ça ne risque pas de poser des soucis pour débuguer si un plugin utilise l’info "profondeur" ou du moins "racine [oui/non]" pour modifier le fond utilisé en fonction ?
    particulièrement si on appelle justement ?page=truc/muche&var_mode=debug ? styliser pourrait ne pas renvoyer le squelette qu’on imagine ?

  • ffmpeg, Audiostream : How to get type (fourcc) of it with the API ?

    21 août 2021, par User42

    This seems to be a too simple question,
but I was not successful in getting it :

    


    I have no problems with decoding a stream and accessing the data.
But I also need the bitrate and the type of the stream.

    


    The bitrate and the codec used I get by AVCodecContext's members
bit_rate and codec_id.

    


    But I don't need the codec used but the stream type
(as the codec AV_CODEC_ID_MP3 is used for mp1, mp2 and mp3 for example).

    


    I tried AVStream.id, but it is always 0.

    


    Looks like I'm mixing up things, but where ?

    


  • RTP Streaming with ffmpeg : server streaming, client failing

    27 novembre 2013, par Christoph Kuhr

    I compiled ffmpeg and x264 myself.

    x264 version :

    #define X264_REV 2377
    #define X264_REV_DIFF 0
    #define X264_VERSION " r2377 1ca7bb9"
    #define X264_POINTVER "0.140.2377 1ca7bb9"

    ffmpeg version : 0.11.4
    ffmpeg configuration :

    --enable-x11grab --enable-pthreads --enable-libfaac --enable-libxvid --enable-libx264 --enable-libv4l2 --enable-libmp3lame --enable-libpulse --enable-gpl --enable-nonfree --disable-yasm

    streaming server call :

    ffmpeg -f x11grab -s 1600x900 -framerate 50 -i :0.0 -vcodec libx264 -threads 4 -preset ultrafast -crf 0 -q:v 1 -b:v 8M -an -f rtp rtp://192.168.188.30:8710

    ...

    Output #0, rtp, to 'rtp://192.168.188.30:8710':
     Metadata:
       encoder         : Lavf54.6.100
       Stream #0:0: Video: h264, yuv420p, 1600x900, q=-1--1, 8000 kb/s, 90k tbn, 50 tbc
    Stream mapping:
     Stream #0:0 -> #0:0 (rawvideo -> libx264)
    SDP:
    v=0
    o=- 0 0 IN IP4 127.0.0.1
    s=No Name
    c=IN IP4 192.168.188.30
    t=0 0
    a=tool:libavformat 54.6.100
    m=video 8710 RTP/AVP 96
    b=AS:8000
    a=rtpmap:96 H264/90000
    a=fmtp:96 packetization-mode=1

    Everything looks good so far...

    Now the problem.
    I create foo.sdp from the SDP output of the server and try to playback the stream with ffmpeg ffplay foo.sdp. ffplay fails with the following error :

    [sdp @ 0x7f5e0c0008c0] decoding for stream 0 failed
    [sdp @ 0x7f5e0c0008c0] Could not find codec parameters (Video: h264)
    [sdp @ 0x7f5e0c0008c0] Estimating duration from bitrate, this may be inaccurate
    gameserver.sdp: could not find codec parameters

    If I try the same with VLC, it also fails, but with the different error :

     [0x7f3278c045b8] live555 demux error: no data received in 10s, aborting

    Look like different reasons. But I could not solve either. Does anyone have a clue ?