Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (98)

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (5732)

  • What video codec for little number of color ?

    12 mars 2013, par Scorpi0

    I am trying to make a video with AForge FFMPEG library.
    My video consist in little arrow moving, drawn with System.Drawing namespace.
    So I draw in a graphic, and I add image by image to the video. This method is inspired from this answer.

    Now, the prolem I got is that all the codecs I tried give very low result. The arrows have very bad borders, I don't think classic codec fit to this type of image.

    In fact, I need something very close to a raw format. But raw format give me 1Go video size for 5 seconds video.

    I'm only drawing arrow, filled with the same color, on a uniform background, so I wonder if there is a special video codec that can output a HD result with an acceptable file size.

    Painted arrow : enter image description here

    Video arrow : enter image description here

    The video will be shipped to our clients. So we are seeking for a solution with the least constraint on the reading process.

  • Trouble writing mp3 into flv container

    8 février 2013, par Sriram

    I am encoding a raw pcm stream with LAME and writing the mp3 encoded samples to an flv container using a c program. For debugging purposes, I am also writing the mp3 encoded samples to a file separately. The following is observed :

    1. The mp3 written to another file is correct. There are no clicks or any other artefacts observed.
    2. The flv file does not play anything. Examining with ffmpeg like so :

      $ ./ffmpeg.exe -i temp_local_flv.flv

    The above command gives the following :

    ffmpeg version N-49352-gc46943e Copyright (c) 2000-2013 the FFmpeg developers
     built on Jan 26 2013 12:12:14 with gcc 4.7.2 (GCC)
     configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgsm --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libxavs --enable-libxvid --enable-zlib
     libavutil      52. 17.100 / 52. 17.100
     libavcodec     54. 91.100 / 54. 91.100
     libavformat    54. 61.104 / 54. 61.104
     libavdevice    54.  3.102 / 54.  3.102
     libavfilter     3. 34.101 /  3. 34.101
     libswscale      2.  2.100 /  2.  2.100
     libswresample   0. 17.102 /  0. 17.102
     libpostproc    52.  2.100 / 52.  2.100
    [flv @ 0000000000307be0] Stream discovered after head already parsed
    [mp3 @ 000000000237d9c0] Header missing
    Input #0, flv, from 'temp_local_flv.flv':
     Duration: 00:00:00.07, start: 0.002000, bitrate: 643 kb/s
       Stream #0:0: Audio: mp3, 22050 Hz, mono, s16p, 32 kb/s
       Stream #0:1: Data: none
    At least one output file must be specified  

    My questions :
    1. What is this "Header missing" ? Is there a "special" mp3 header that needs to be written when writing encoded samples to an flv container ? If so, what does the header contain ? And given that the mp3 samples written to the file are decoded correctly by an audio player, what am I missing ?

  • avcodec_decode_video2 always sets got_picture_ptr to 0 while using with live555

    10 octobre 2013, par Richard Macwan

    I am trying to decode frames using libavcodec. My applications retrieves rtp packets from on rtsp stream using live555. I have searched quite a lot for reasons of avcodec_decode_video setting got_picture_ptr to 0 but haven't been able to find it.
    Can anyone tell me how avcodec_decode_video2 works internally ? What reasons might lead the got_picture_ptr pointer to be set to zero ?
    PS : The function does read bytes i.e the return value is always a positive number, not -1.
    I'm stumped here, any help would be appreciated. I haven't quoted any code since the code to decode using avcodec_decode_video2 is fairly generic and there is nothing special in my code.(I have decoded rtsp streams earlier using libavcodec, just not along with live555)