Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (100)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • 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

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

Sur d’autres sites (7946)

  • Révision 21170 : prive/formulaires/login.php, ecrire/inc/auth.php : 2 notice php en moins.

    28 janvier 2014, par denisb -
  • vf_setdar : make config_props work properly when called multiple times.

    18 mars 2013, par Anton Khirnov
    vf_setdar : make config_props work properly when called multiple times.
    

    Do not overwrite the variable set through AVOptions.

    • [DH] libavfilter/vf_aspect.c
  • I am trying to generate thumbnail by using ffmpeg but I can not define pathways and make my codes work

    17 juillet 2020, par D. Merchant

    Fffmpeg modul is installed in my shared hosting.

    


    enter image description here

    


    My goal is to get a thumbnail of a video. My codes is in below. I can not make them work. This is my first time I use ffmpeg.

    


    require 'vendor/autoload.php';

$video_path = 'home/sasasasasa/public_html/wp-content/uploads/jvhyicpzxy.mp4';

$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open($video_path);
$video
    ->frame(FFMpeg\Coordinate\TimeCode::fromSeconds(5))
    ->save('new_preview1.jpg');


    


    When I try the codes in the above, I get this error :

    


    enter image description here

    


    1- What does 'vendor/autoload.php' pathway mean ? I can not see a folder called "vendor" in my file manager.

    


    2- I've check my ffmpeg folder with this code "exec('which ffmpeg') ;" and it outputs "/usr/bin/ffmpeg". But there is no directory in my file manager like that. After a search, Ive found this directory about ffmpeg : "/perl/usr/lib/perl5/FFmpeg". If I enter this path in my hosting, I can see only "Command.pm" and "Thumbnail.pm". What is my wrong, and how can I make my codes work and have a preview of the video ?