Recherche avancée

Médias (91)

Autres articles (19)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Les thèmes de MediaSpip

    4 juin 2013

    3 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
    Thèmes MediaSPIP
    3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...)

Sur d’autres sites (5139)

  • ffmpeg closes with return code 137

    25 septembre 2014, par Adi Ulici

    I am using ffmpeg to convert videos and about 66% of the times doesn’t do it’s job until the end. It simply gets killed, closes before it ends the job, and returns "137" instead of "0".

    I can’t seem to find anywhere some information about this return code. Does anyone know some tips or where can I find further guidance ? Thanks

  • Initializing hwaccel_context in libavcodec

    3 janvier 2018, par dloman

    I am trying to get hardware accelerated video working using libavcodec. I am using the hw_decode.c example as a starting point and am unable to get it to work. both AVCodecContext->hwaccel and AVCodecContext->hwaccel_context are NULL

    I belive some part of the hwaccel is working as I see the output

    libva info: VA-API version 0.39.0
    libva info: va_getDriverName() returns 0
    libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
    libva info: Found init function __vaDriverInit_0_39
    libva info: va_openDriver() returns 0

    Which is the same as when I run

    ffmpeg -hwaccel vaapi -hwaccel_device /dev/dri/renderD128 -hwaccel_output_format vaapi -i input.mpg -f null -

    but immediately after that I get the following error message

    [h264 @ 0x1df2cc0] Hardware acceleration context (hwaccel_context) does not exist.
    Failed to get HW surface format.
    [h264 @ 0x1df2cc0] decode_slice_header error
    [h264 @ 0x1df2cc0] no frame!

    I looked at the similar question and the answer to this shows how to get a AVCodecContext->hwaccel. But even with the AVCodecContext->hwaccel being a valid VAApih264 decoder I still get the same error message.

    How do I initialize a AVCodecContext->hwaccel_context and after that what else do I need to do to get hardware accelerated video working in ffmpeg ?

  • FFMPEG Library MP3 Encoder

    13 mars 2013, par David Tay

    Does the ffmpeg library come with an MP3 encoder ?

    This :

    AVCodec *pCodec = avcodec_find_encoder(AV_CODEC_ID_MP3);

    always returns null. I also tried AV_CODEC_ID_MP3ADU and AV_CODEC_ID_MP3ON4, they too return null. The only encoding codec I've found is AV_CODEC_ID_MP2.

    Any help appreciated