Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (8)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

Sur d’autres sites (4672)

  • How to set x264 baseline profile with libav in C++

    14 avril 2015, par Denis Loh

    I am writing a small tool, which converts a video into a raw h264 file. These files shall be played later by a SIP phone. I have the following code :

     eccx->pix_fmt = PIX_FMT_YUV420P;
     eccx->width = VIDEO_FRAME_WIDTH;
     eccx->height = VIDEO_FRAME_HEIGHT;
     eccx->time_base.num = 1;
     eccx->time_base.den = VIDEO_FRAMES_PER_SEC;
     eccx->max_b_frames = 0;

     eccx->rtp_payload_size = VIDEO_RTP_PAYLOAD_SIZE;

     eccx->bit_rate = VIDEO_BIT_RATE;
     eccx->rc_max_rate = VIDEO_BIT_RATE;
     eccx->rc_buffer_size = VIDEO_BIT_RATE * 2;

     eccx->flags |= CODEC_FLAG_QP_RD;
     eccx->flags |= CODEC_FLAG_LOW_DELAY;
     eccx->flags |= CODEC_FLAG_QSCALE;
     eccx->flags |= CODEC_FLAG_EMU_EDGE;

     eccx->mb_decision = FF_MB_DECISION_SIMPLE;

     switch(video){
     case H263:
       break;
     case H263P:
       eccx->flags |= CODEC_FLAG_H263P_SLICE_STRUCT;
       break;
     case H264:
       av_dict_set(&options, "vprofile", "baseline", 0);
       eccx->flags2 = CODEC_FLAG2_FASTPSKIP;
       eccx->profile = FF_PROFILE_H264_BASELINE;
       eccx->level = 13;
       break;
     }

    When I execute this program I got the following output from libx264 :

    [libx264 @ 0x10fad60] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
    [libx264 @ 0x10fad60] profile Main, level 1.3

    Why is this still Main profile, though I have set it explicitly to baseline ?

    Additionally, I would be really cool, if someone could add some notes which kind of h264 settings are useful for SIP phone calls. Thank you very much !

  • How to set x264 baseline profile with libav in C++

    14 avril 2015, par Denis Loh

    I am writing a small tool, which converts a video into a raw h264 file. These files shall be played later by a SIP phone. I have the following code :

     eccx->pix_fmt = PIX_FMT_YUV420P;
     eccx->width = VIDEO_FRAME_WIDTH;
     eccx->height = VIDEO_FRAME_HEIGHT;
     eccx->time_base.num = 1;
     eccx->time_base.den = VIDEO_FRAMES_PER_SEC;
     eccx->max_b_frames = 0;

     eccx->rtp_payload_size = VIDEO_RTP_PAYLOAD_SIZE;

     eccx->bit_rate = VIDEO_BIT_RATE;
     eccx->rc_max_rate = VIDEO_BIT_RATE;
     eccx->rc_buffer_size = VIDEO_BIT_RATE * 2;

     eccx->flags |= CODEC_FLAG_QP_RD;
     eccx->flags |= CODEC_FLAG_LOW_DELAY;
     eccx->flags |= CODEC_FLAG_QSCALE;
     eccx->flags |= CODEC_FLAG_EMU_EDGE;

     eccx->mb_decision = FF_MB_DECISION_SIMPLE;

     switch(video){
     case H263:
       break;
     case H263P:
       eccx->flags |= CODEC_FLAG_H263P_SLICE_STRUCT;
       break;
     case H264:
       av_dict_set(&options, "vprofile", "baseline", 0);
       eccx->flags2 = CODEC_FLAG2_FASTPSKIP;
       eccx->profile = FF_PROFILE_H264_BASELINE;
       eccx->level = 13;
       break;
     }

    When I execute this program I got the following output from libx264 :

    [libx264 @ 0x10fad60] using cpu capabilities: MMX2 SSE2Fast SSSE3 FastShuffle SSE4.1 Cache64
    [libx264 @ 0x10fad60] profile Main, level 1.3

    Why is this still Main profile, though I have set it explicitly to baseline ?

    Additionally, I would be really cool, if someone could add some notes which kind of h264 settings are useful for SIP phone calls. Thank you very much !

  • How to convert my 16:9 size MKV video to 4:3 size AVI video file

    10 avril 2013, par Bimal Rekhadiya

    I have a video in MKV format and it's size is 720x304 (16:9 ratio) size video.

    I want to convert it to AVI format (using xvid video codec). The output file size should be 480x360 (4:3 ratio) and also want to keep the original (16:9) ratio so it should be cinemascope (black areas at top and bottom).

    I am on Ubuntu Linux so I can use mencoder, avconv(ffmpeg) or any tool that work on Linux.

    I tried this command :

    avconv -i sample.mkv -vcodec libxvid -r 25 -b 1200 -aspect 4:3 -q 1 t.avi

    But the problem is that the video is stretched to 4:3 and I want to keep original video's ratio and want to add black boxes at top and bottom so it will look like a "CinemaScope".

    What is the best way to do this ?