Recherche avancée

Médias (91)

Autres articles (79)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (5028)

  • Alternative to ffmpeg for dynamically creating video thumbnails

    3 novembre 2013, par user763852

    The server hosting my website doesn't have ffmpeg and I am not allowed to install any additional extensions. Is there any other way I can make video thumbnails dynamically ? Perhaps some kind of web service, where I pass the video file and as a result I get a picture file. I'm using php, by the way.

  • Getting artifacts when trying to read video stream from YouTube

    23 février 2012, par givi

    I'm trying to read the video frames from the RTSP stream that I get from YouTube. Here is the link for my test video :

    rtsp ://v8.cache5.c.youtube.com/CiILENy73wIaGQkJlrXMiAG8BxMYDSANFEgGUgZ2aWRlb3MM/0/0/0/video.3gp

    If I'm reading frames from the local file - everything is fine, but when read them from a stream I get nothing but lots of artifacts. I've googled around and found out that there might be a problem with UDP packets and switching to TCP may help but I really can't find where it is possible to change this.

    Here is the function for reading a frame :

    bool nextFrame(AVFormatContext *pFormatCtx, AVCodecContext *pCodecCtx, int videoStream, AVFrame *pFrame) {  AVPacket packet;
       int frameFinished = 0;

       while( !frameFinished && av_read_frame(pFormatCtx, &packet) >= 0 ) {
           // Is this a packet from the video stream?
           if( packet.stream_index == videoStream ) {
               // Decode video frame
               avcodec_decode_video2(pCodecCtx, pFrame, &frameFinished, &packet);
           }

           // Free the packet that was allocated by av_read_frame
           av_free_packet(&packet);    
          }    
          return frameFinished!=0;  
    }

    I'm also getting lots of error messages in my log :

    [h263 @ 0x7804c00] warning: first frame is no keyframe
    [h263 @ 0x7804c00] illegal ac vlc code at 6x1
    [h263 @ 0x7804c00] Error at MB: 18
    [h263 @ 0x7804c00] concealing 99 DC, 99 AC, 99 MV errors
    [h263 @ 0x7804c00] I cbpy damaged at 10 4
    [h263 @ 0x7804c00] Error at MB: 58
    [h263 @ 0x7804c00] concealing 99 DC, 99 AC, 99 MV errors
    [h263 @ 0x7804c00] I cbpy damaged at 6 6
    [h263 @ 0x7804c00] Error at MB: 78
    [h263 @ 0x7804c00] concealing 76 DC, 76 AC, 76 MV errors
    [h263 @ 0x7804c00] I cbpy damaged at 5 5
    [h263 @ 0x7804c00] Error at MB: 65
    [h263 @ 0x7804c00] concealing 88 DC, 88 AC, 88 MV errors
    [h263 @ 0x7804c00] illegal ac vlc code at 7x5
    [h263 @ 0x7804c00] Error at MB: 67
    [h263 @ 0x7804c00] concealing 86 DC, 86 AC, 86 MV errors

    ...and so on

    edit : this is 99.9% a UDP-TCP problem. I've found this link :

    rtsp ://195.200.199.8/mpeg4/media.amp

    This is some test camera available online. It streams with artifacts. However if it has get parameter 'tcp' and if I use this

    rtsp ://195.200.199.8/mpeg4/media.amp ?tcp

    everything works without artifacts.

    So to correct my question : is there any way to force YouTube or ffmpeg to use TCP ?

  • Use M4S2 as default video tag for MPEG-4 ASP in asf.

    5 octobre 2011, par Carl Eugen Hoyos

    Use M4S2 as default video tag for MPEG-4 ASP in asf.