Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (50)

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

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (7183)

  • Split into video frames and save as jpeg

    3 janvier 2017, par Selman Akbulut

    I want to split all frames and save the jpeg file but Error getBuffredImage

    public static void main( String[] args )
    {
       FFmpegFrameGrabber g = new FFmpegFrameGrabber("C:\1.mp4");
       g.start();

       for (int i = 0 ; i < 50 ; i++) {
           ImageIO.write(g.grab().getBufferedImage(), "png", new File(System.currentTimeMillis() + ".png"));
       }
       g.stop();
    }
  • Revision 0d80584327 : vp8_loop_filter_bh_y_sse2 : save/restore xmm registers xmm[6-11] should be saved

    21 novembre 2012, par James Zern

    Changed Paths : Modify /vp8/common/x86/loopfilter_block_sse2.asm vp8_loop_filter_bh_y_sse2 : save/restore xmm registers xmm[6-11] should be saved and restored for Windows x64 ; prevents an encoder mismatch and some datarate issues. Change-Id : (...)

  • FFMPEG PHP Message : Unable to save frame

    30 avril 2020, par Hitesh Vala Ahir

    Hello I have try to take thumbnail through FFMPEG but get the error message like Message : Unable to save frame.

    



    PHP 7.0

    



    php-ffmpeg/php-ffmpeg : ^0.16.0

    



    Below is the code

    



    require &#x27;vendor/autoload.php&#x27;;&#xA;&#xA;&#xA;&#xA;$sec =1;&#xA;$movie = &#x27;video1581091620.mp4&#x27;;&#xA;$thumbnail = &#x27;thumbnail.png&#x27;;&#xA;&#xA;try{&#xA;$ffmpeg = FFMpeg\FFMpeg::create();&#xA;$video = $ffmpeg->open($movie);&#xA;$frame = $video->frame(FFMpeg\Coordinate\TimeCode::fromSeconds($sec));&#xA;$frame->save($thumbnail);&#xA;echo &#x27;<img src="http://stackoverflow.com/feeds/tag/&#38;#x27;.$thumbnail.&#38;#x27;" style='max-width: 300px; max-height: 300px' />&#x27;;&#xA;}catch(Exception $e) {&#xA;  echo &#x27;Message: &#x27; .$e->getMessage();&#xA;}&#xA;

    &#xA;