Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (110)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (10084)

  • Anomalie #3115 : Bug sous PHP 5.4 car le charset n’est pas passé à htmlspecialchars (site en iso-8...

    12 décembre 2013, par b b

    Ton problème semble lié à ce sujet sur spip-dev :

    http://archives.rezo.net/archives/spip-dev.mbox/YLVLEP2EGK26XHSZJHN3GI744NMTOE2H/

    Un patch y est proposé et est en cours de test pour intégration.

  • Anomalie #3115 : Bug sous PHP 5.4 car le charset n’est pas passé à htmlspecialchars (site en iso-8...

    21 janvier 2014, par b b

    Le correctif a été intégré dans la branche stable cf :

    http://archives.rezo.net/archives/spip-dev.mbox/AULQPMBIYUTS6VB2D54FWXMBSJW2B2W4/

    @Equipement peutx-tu confirmer que ça règle le problème histoire qu’on ferme ce ticket ?

  • FFMpeg PHP Package getting Error when loading in Laravel Queue

    18 mars 2020, par Steve Rogers

    I have created a code on Laravel to add watermark to my video with ffmpeg package. This function is working perfectly in when working with controller.

    Due to time consuming task I move the code to Laravel queue system and it successfully dispatch to queues table. but when I run php artisan queue:work the code getting error like

    Alchemy\BinaryDriver\Exception\ExecutionFailureException: ffmpeg failed to execute command '/usr/bin/ffmpeg' '-y' '-i' '/home/forge/demosite/public/frontend/video/1276841041584344642.mp4' '-threads' '12' '-vcodec' 'libx264' '-acodec' 'libmp3lame' '-b:v' '1000k' '-refs' '6' '-coder' '1' '-sc_threshold' '40' '-flags' '+loop' '-me_range' '16' '-subq' '7' '-i_qfactor' '0.71' '-qcomp' '0.6' '-qdiff' '4' '-trellis' '1' '-b:a' '256k' '-ac' '2' '-pass' '1' '-passlogfile' '/tmp/ffmpeg-passes5e6f2f04cec372bg0z/pass-5e6f2f04cecc2' '/home/forge/demosite/frontend/posts/video/org-post/n-w-post-video-org/17957037231584344836.mp4' in /home/forge/demosite/vendor/alchemy/binary-driver/src/Alchemy/BinaryDriver/ProcessRunner.php:10

    In many references I can see that this issue related to permission issue of public folder. so I give 777 permission to public folder and it will not working...

    Working Code..

      $ffmpeg = FFMpeg\FFMpeg::create([
           'ffmpeg.binaries'  => '/usr/bin/ffmpeg',
           'ffprobe.binaries' => '/usr/bin/ffprobe' ,
           'timeout' => 3600, // The timeout for the underlying process
           'ffmpeg.threads' => 12, // The number of threads that FFMpeg should use
       ]);
       $video = $ffmpeg->open($this->file);
       $random = rand().''.time();
       $randomFileName = $random . ".$this->extension";

       /*-------------------------------original video----------------------------------------------*/
       $format = new FFMpeg\Format\Video\X264('libmp3lame', 'libx264');      
       $format->setKiloBitrate(1000)->setAudioChannels(2)->setAudioKiloBitrate(256);        
       // $saveLocation = getcwd() . '/frontend/video/uploads/n_w_org_vd/' . $randomFileName;
       $saveLocation = getcwd() . '/frontend/posts/video/org-post/n-w-post-video-org/' . $randomFileName;
       $video->save($format, $saveLocation);
       $filepath = 'frontend/posts/video/org-post/n-w-post-video-org/' . $randomFileName;
       Storage::put($filepath, file_get_contents($saveLocation),'public');