Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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é.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (8056)

  • avformat/movenc : allow Apple Lossless inside mp4

    20 novembre 2020, par Leo Izen
    avformat/movenc : allow Apple Lossless inside mp4
    

    The 'alac' identifier has been registered to ISO and thus towards
    ISOBMFF at the MP4 registration authority. The existing non-MOV
    mux mode matches the official ALAC-in-MP4 specification.

    • [DH] libavformat/movenc.c
  • 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;

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

    &#xA;

    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 ?

    &#xA;