Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (97)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (11118)

  • Laravel php-ffmpeg Encoding failed

    21 août 2023, par Jack The Baker

    In laravel using php-ffmpeg want to convert video and do some changes on it, like watermark, change size and etc... I ran a test :

    


        $format = new X264;
    $ffmpeg = FFMpeg::create();
    $video = $ffmpeg->open(public_path()."/videos/file.mp4");
    $output = public_path().'/videos/'.time().'.mp4';
    $video->save($format, $output);


    


    And it is working good, but I want to add a watermark then added this :

    


         $watermarkPath = public_path().'/videos/watermark.png';
     $video ->filters() ->watermark($watermarkPath, array( 'position' => 'relative', 'bottom' => 50, 'right' => 50, ));


    


    But now I didn't get any output and also got error :

    


    


    FFMpeg\Exception\RuntimeException : Encoding failed in file
D :\Workshop\x\New
Version\x-api\vendor\php-ffmpeg\php-ffmpeg\src\FFMpeg\Media\AbstractVideo.php
on line 116

    


    #0 D :\Workshop\x\New Version\x-api\app\Http\Controllers\AdsController.php(497) :
FFMpeg\Media\AbstractVideo->save(Object(FFMpeg\Format\Video\X264),
'D :\Workshop\Nob...')

    


    


    Any idea ?

    


  • Make Effects in ffmpeg

    5 mars 2014, par user2727765

    How to make a zoom-in effect using ffmpeg. I need to create a video with a single image with Zoom-in as effect using FFMPEG. The Zoom-in should be bit slow. I have searched in the document and could find a sample. Can I get a command line sample ?

  • I using ffmpeg to live stream a hd video to rtmp server of facebook but when see it only show 360 quality

    29 octobre 2018, par jack ma

    This is my ffmpeg code :

    'ffmpeg -i "{}"  ' \
         '-vf "zoompan=z=\'min(max(zoom,pzoom)+0.0015,2)\':d=1:x=\'iw/2-(iw/zoom/2)\':y=\'ih/2-(ih/zoom/2)\'" ' \
         '-vcodec libx264 ' \
         '-preset veryfast ' \
         '-maxrate 2932k ' \
         '-bufsize 2500k ' \
         '-vf "format=yuv420p" ' \
         '-g 60 ' \
         '-acodec libmp3lame ' \
         '-b:a 198k ' \
         '-ar 44100 ' \
         '-s 1280x720 ' \
         '-f flv "{}"

    I have wasted 2 day for this problem. Thanks for reading !