Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (59)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

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

Sur d’autres sites (6096)

  • swresample/rematrix : treat 22.2 as 5.1 (back) when mixing

    1er août 2020, par Jan Ekström
    swresample/rematrix : treat 22.2 as 5.1 (back) when mixing
    

    Only this sub-set of channels actually follows the bit mask order
    in the official 22.2 channel mapping. Additionally, the 5.1 channels
    are there for backwards compatibility with the previous system.

    This enables the utilization of 22.2 content until a proper down/up
    matrix is added into swresample.

    • [DH] libswresample/rematrix.c
  • H264 to jpeg FFMPEG decoding/encoding in C

    2 décembre 2023, par Vikram Kamath

    I'm trying to write a script in C to decode H264 frames and then encode them to jpeg/png format, frame-by-frame.

    


    I'm going off of the tutorials given in the official decoder and encoder examples, but with a decoder type of AV_CODEC_ID_H264 and an encoder type AV_CODEC_ID_MJPEG, the files I am saving seem to be unreadable. Am I using the incorrect codecs ?

    


  • LibAV FFMPEG How to get devices list ?

    23 septembre 2020, par FennecFix

    I looked up to documantation and found a very convenient AVInputFormat's funciton get_device_list . But the problem is I can't use it.

    


    Here's my short code snippet

    


    #include <qdebug>&#xA;&#xA;extern "C"&#xA;{&#xA;#include <libavformat></libavformat>avformat.h>&#xA;#include <libavdevice></libavdevice>avdevice.h>&#xA;}&#xA;&#xA;int main(int argc, char *argv[])&#xA;{&#xA;    avdevice_register_all();&#xA;&#xA;    AVFormatContext *formatContext = avformat_alloc_context();&#xA;&#xA;    AVInputFormat *inputFormat = av_find_input_format("dshow");&#xA;&#xA;    AVDeviceInfoList devices;&#xA;    inputFormat->get_device_list(formatContext, &amp;devices);&#xA;&#xA;    qDebug() &lt;&lt; devices.nb_devices;&#xA;&#xA;    avformat_free_context(formatContext);&#xA;&#xA;    return 0;&#xA;}&#xA;</qdebug>

    &#xA;

    And that code CRASHES when I'm trying to print devices. How do I use that function properly ? The official domentation has no examples using that function.

    &#xA;