Recherche avancée

Médias (91)

Autres articles (19)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (3558)

  • Why does console output "illegal aspect ratio" when program reads a flv file?

    11 décembre 2015, par xiaolan

    I use program to read a flv file. After it executed the avformat_find_stream_info() function, the console outputs some error information. Here is detailed error information.I want to know reasons. In fact, the file with flv format is made by myself. The producing process is : I encode a H.264 packet, then write it into a flv file, including the process of avformat_write_header(flv_ofmt_ctx, NULL),av_interleaved_write_frame(flv_ofmt_ctx, &p->pkt),av_write_trailer(flv_ofmt_ctx)……

  • avcodec/ralf : Fix undefined pointer in decode_channel()

    4 août 2019, par Michael Niedermayer
    avcodec/ralf : Fix undefined pointer in decode_channel()
    

    Fixes : 16203/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RALF_fuzzer-5086088934195200

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ralf.c
  • Set audio language and subtitle language using php-ffmeg

    2 septembre 2020, par Kermit

    Is that possible to set a desired audio language and a subtitle language using php-ffmeg ?&#xA;Something like :

    &#xA;

    $format&#xA;->setAudioLanguage(&#x27;eng&#x27;)&#xA;->setSubtitle(&#x27;eng&#x27;);&#xA;

    &#xA;

    I tried to look into the documentation but I wasn't able to find anything about it...

    &#xA;

    My goal is to make a clip using a video containing several audio languages and subtitles, so I need to be able to choose which channel I want for my output.

    &#xA;