Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (35)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • 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

Sur d’autres sites (6806)

  • Split videos into five segment using ffmpeg

    20 janvier 2019, par RJFF

    I have 10000 videos and I want to split each video into five segments

    I know previously how to segment video using ffmpeg but I do not know how to use it with a large number of videos

    the names of videos are :
    1.avi,
    2.avi,
    3.avi,
    .......
    .....,
    10000.avi

    I want to use for loop with ffmpeg
    can you please help me ?!!!!

  • How to convert a seems like NV21 rtsp stream to normal YUV420 rtmp stream ?

    22 décembre 2018, par N.Monster

    I tried to push a live stream from H264 Encode Box(Based on Hi3516)
    to Bilibili using ffmpeg command line tool, but got a totally green picture.(It is all right when I push it to my local rtmp server.)

    After searching, i got that the problem may lies in the U and V in YUV420, or NV12 and NV21.The remote server identifies error.

    I previously use
    -vcodec copy
    After change to
    -vcodec h264
    Everything go well. But cost CPU to much. Emm Re-encoder ? I don’t need this.

    So how can I convert only pixel format locally before push steam , or just tell the server my pixel format as to get a color correct picture ?

  • sws_freeContext/sws_scale/sws_getContext errors while compiling ffmpeg libraries

    17 avril 2014, par Steve

    I have been working on ffmpeg for one of my projects. I am trying to utilize the ffmpeg static or shared libraries for my Android x86 project. I have followed the steps provided by Intel on this weblink https://software.intel.com/en-us/android/blogs/2013/12/06/building-ffmpeg-for-android-on-x86. When I try to build my project, I encountered a three errors. I have been trying to rectify them from the past one week, I have tried all possible methods with no results.

    jni/jniplayer/jniplayer.cpp:1244 : error : undefined reference to 'sws_freeContext'
    jni/jniplayer/jniplayer.cpp:1384 : error : undefined reference to 'sws_scale'
    jni/jniplayer/jniplayer.cpp:1371 : error : undefined reference to 'sws_getContext'

    I have used arm libraries previously to build my Android arm project that compiled with no problems. Maybe, I am missing a few steps with x86. As all the above errors are generated only with x86.

    I suppose that the issue resides with the enabling of the macro for x86 platform.

    #if ARCH_ARM
    #define USE_SWSCALE 0
    #else
    #define USE_SWSCALE 1
    #endif

    Only when USE_SWSCALE is enabled, functions such as sws_getcontext get enabled in ffmpeg.

    Have someone encountered such errors before. Kindly, please offer me some help with this issue. Thanks in advance for any answers.