Recherche avancée

Médias (91)

Autres articles (48)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Class 'FFMpeg\FFMpeg\Coordinate\Dimension' not found

    14 juillet 2016, par Vaibhavraj S. Roham

    I am trying to execute basic example of php-ffmpeg library in Laravel 5. I have already installed ffmeg on ubuntu and working fine from command line. I am getting following error while running the example.


    Error

    FatalErrorException in WelcomeController.php line 26 : Class
    ’FFMpeg\FFMpeg\Coordinate\Dimension’ not found


    My Code

    use FFMpeg\FFMpeg;

    class WelcomeController extends Controller {

       public function __construct()
       {
           $this->middleware('guest');
       }

       public function index()
       {
           return view('welcome');
       }

       public function video()
       {

           $ffmpeg = FFMpeg::create();

           $video = $ffmpeg->open('test1.mp4');

           $video
               ->filters()
               ->resize(new FFMpeg\Coordinate\Dimension(320, 240))
               ->synchronize();
           $video
               ->frame(FFMpeg\Coordinate\TimeCode::fromSeconds(10))
               ->save('frame.jpg');
           $video
               ->save(new FFMpeg\Format\Video\X264(), 'export-x264.mp4')
               ->save(new FFMpeg\Format\Video\WMV(), 'export-wmv.wmv')
               ->save(new FFMpeg\Format\Video\WebM(), 'export-webm.webm');
       }
    }

    What would be the error ?

  • Use ffmpeg from an electron app

    8 février 2017, par Sharath Huddar

    I intend to build a basic video editor desktop app. I have built a working prototype in python ( using kivy ). In this prototype I directly call the command line ffmpeg tool.

    How can I incorporate ffmpeg into my electron app ?

  • FFMPEG converting to WEBM

    16 mai 2012, par Casey Landreth

    I'm having an issue that I can't seem to figure out. I have FFMPEG installed on my dedicated Linux server running FEDORA 7 that is hosted through Godaddy (so I have limited access through cPanel). The FFMPEG version is 0.6.0-svn and I'm able to convert all types of videos using it with the normal FFMPEG commands but not with WEBM which from my reading is supported with this version of FFMPEG.

    I run the command with no results.
    ffmpeg -i test.mov -f webm test.webm

    Any help or pointing in the right direction would be great.