Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (51)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • How do I batch add text watermark to many videos all at once using FFMPEG ?

    28 avril 2023, par KEVIN

    I have the following batch file to add watermarks :

    


    ffmpeg -i "video.mp4" -vf "drawtext=fontfile=/windows/fonts/arial.ttf:fontsize=24:fontcolor=red:x=w-tw-10:y=h-th-10:text='insert text here'" -c:a copy "video_watermark.mp4" && move /y "video_watermark.mp4" "video.mp4"


    


    This script actually worked and I was able to add a text watermark to the bottom right of the video while overwriting the original file.

    


    How do I add text to 20 or 30 videos all at once using the same settings in the script ?

    


  • Laravel ffmpeg Encoding failed in watermark filter

    21 juillet 2018, par Ghyath Darwish

    ffmpeg show error while encoding when add watermark filter :

    FFMpeg::fromDisk('public')
               ->open($path)
               ->addFilter(function ($filters) {
                   $filters->resize(new Dimension(640, 480));
                   $filters->watermark(public_path().'/storage/images/mark.png', [
                        'position' => 'relative',
                        'bottom' => 240,
                        'right' => 320
                   ]);
               })
               ->export()
               ->toDisk('public')
               ->inFormat((new \FFMpeg\Format\Video\X264('libmp3lame', 'libx264'))->setKiloBitrate(40))
               ->save('thumbnail/'.$filename);

    when i remove filter->watermark it is working,
    so what is the problem ?

  • how to use crop filter twice in ffmpeg

    30 janvier 2018, par user1502679

    I want to use crop filter in two different locations, for example top left + bottom right and to merge them, how can I do this ?

    I want to use the code once, not to make with two independent crops and merge after that.

    EDIT : an image : http://alexvorn.com/wp-content/uploads/2013/07/ffmpeg-multiple-crop.png