Recherche avancée

Médias (0)

Mot : - Tags -/géolocalisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (40)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (6037)

  • FFmpeg add complex filter image and audio to video

    5 mars 2019, par fitzmode

    I’m working with fluent-ffmpeg for Node and would like to add a gif image and an audio to an mp4 video. The gif added with complexFilter works as expected, but the audio does not work with the complexFilter applied. Without the complexFilter, the audio works as expected.

       ffmpeg('/Users/xxx/functions/src/initialvideo.mp4')
       .setFfmpegPath(ffmpeg_static.path)
       .input('/Users/xxx/functions/src/somegif.gif')
       .complexFilter(
         [
           {
             "filter": "overlay",
             "options": {
               "enable": "between(t,0,4)",
               "x": "810",
               "y": "465"
             },
             "inputs": "[0:v][1:v]",
             "outputs": "tmp"
           }

         ], ['tmp'])
       .addInput('/Users/xxx/functions/src/somemusic.mp3')

       .outputOptions(['-pix_fmt yuv420p'])
      .on('end',() => {

        return response.status(200).send(`Error getting collection: `)

     })
      .on('error',() => {
        return response.status(500).send(`Internal Server Error: `)

      })
      .save('/Users/xxx/functions/src/finalvideo.mp4')

    Any ideas on how I can solve this ?

  • 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 ?

  • 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 ?