Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (27)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

Sur d’autres sites (4278)

  • How you show the GOP structure of a video ?

    1er mai 2016, par medic911

    I use ffmpeg and h.265 codec. I want to evaluate the structure of the GOP. I found how to do with ffprobe :https://forums.creativecow.net/thread/291/71

    ./ffprobe -show_frames -pretty two_pass.mp4 | grep size|pict_type|coded_picture_number’

    I tried it but it did not work. Are there some similar solution ?

  • FFMPEG : Dumping YUV data into AVFrame structure

    13 janvier 2014, par Zax

    I'm trying to dump a YUV420 data into the AVFrame structure of FFMPEG. From the below link :

    http://ffmpeg.org/doxygen/trunk/structAVFrame.html, i can derive that i need to put my data into

    data[AV_NUM_DATA_POINTERS]

    using

    linesize [AV_NUM_DATA_POINTERS].

    The YUV data i'm trying to dump is YUV420 and the picture size is 416x240. So how do i dump/map this yuv data to AVFrame structures variable ? Iknow that linesize represents the stride i.e. i suppose the width of my picture, I have tried with some combinations but do not get the output.I kindly request you to help me map the buffer. Thanks in advance.

  • FFmpeg command isn't working on Samsung

    30 avril 2016, par user4204805

    I have added the FFmpeg library to my android project.

    I am using the following code to slice my video using FFmpeg :

    String[] complexCommand = {"ffmpeg","-i",input.mp4,"-vf","crop="+surfaceWidth+":"+surfaceHeight+":"+surfaceStartX+":"+surfaceStartY,"-threads","5","-preset","ultrafast","-strict" ,"-2",output.mp4};

    It gives me the following error :

    A/libc: Fatal signal 11 (SIGSEGV) at 0x000f4240 (code=1), thread 17377 (IntentService[U)

    It works on most devices except for Samsung device (just checked on samsung grand). Please help.