Recherche avancée

Médias (91)

Autres articles (79)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (5409)

  • How do I set up FFmpeg on Laravel Forge ?

    31 juillet 2022, par James Stewart

    I have FFMPEG locally on my computer. It is working exactly as I need it to.

    


    I want to use it in production. I deploy a Laravel 8/Vue application to AWS via Laravel Forge. I am using the laravel-ffmpeg package for FFMPEG.

    


    I can't find any articles online and how to install FFMPEG on my server when using Laravel forge. I have added two binaries (ffmpeg [320kb], ffprobe [280kb]) to my project and I have used the suggested laravel-ffmpeg.php config file from that project's docs :

    


    return [
    'ffmpeg' => [
        'binaries' => env('FFMPEG_BINARIES', 'usr/bin/ffmpeg'),
        'threads' => 12,   // set to false to disable the default 'threads' filter
    ],
    'ffprobe' => [
        'binaries' => env('FFPROBE_BINARIES', 'usr/bin/ffprobe'),
    ],
    'timeout' => 3600,
    'log_channel' => env('LOG_CHANNEL', 'stack'),   // set to false to completely disable logging
    'temporary_files_root' => env('FFMPEG_TEMPORARY_FILES_ROOT', sys_get_temp_dir()),
    'temporary_files_encrypted_hls' => env('FFMPEG_TEMPORARY_ENCRYPTED_HLS', env('FFMPEG_TEMPORARY_FILES_ROOT', sys_get_temp_dir())),
];


    


    I've tried moving the binaries around (so not in usr/bin etc) but it doesn't seem to make a difference. I get errors like this :

    


    Alchemy\BinaryDriver\Exception\ExecutionFailureException: ffprobe failed to execute command 'ffprobe' '-help' '-loglevel' 'quiet':

Error Output:

 sh: 1: exec: ffprobe: not found


    


    Is there some 100% certain way to actually get ffmpeg up and running in Forge ? Am I missing something real obvious ?

    


  • Using ffmpeg native aac codec, but metadata says libvo_aacenc, and faststart not supported ?

    8 juillet 2016, par Bob S

    I’m using ffmpeg and am trying to switch from using the ’libvo_aacenc’ encoder to the native aac encoder. It seems to work, but the metadata in the output seems to indicate that it’s still using the old encoder.

    I changed the audio portion of my ffmpeg call from

    -i out.wav -acodec libvo_aacenc

    to

    -i out.wav -acodec aac -strict experimental

    But the output includes this :

    Metadata :

    encoder         : Lavf53.21.1

    Stream #0.0: Video: libx264, yuv420p, 432x256, q=-1--1, 30 tbn, 30 tbc

    Stream #0.1: Audio: libvo_aacenc, 44100 Hz, 1 channels, s16, 200 kb/s

    I don’t understand where it is still getting the ’libvo_aacenc’ from ?

    Another problem, maybe unrelated, is that when I try to add the "-movflags +faststart" option to my call, I get errors :

    [mp4 muxer @ 0x49ad520] [Eval @ 0x3e59d37c6b0] Undefined constant or missing ’(’ in ’faststart’
    [mp4 muxer @ 0x49ad520] Unable to parse option value "faststart"
    [mp4 muxer @ 0x49ad520] Error setting option movflags to value +faststart.

    From looking online it would appear my ffmpeg version is old, pre faststart, but my ffmpeg version is 0.8.17-4:0.8.17-0ubuntu0.12.04.1, Copyright (c) 2000-2014 the Libav developers built on Mar 16 2015 13:26:50 with gcc 4.6.3

    That seems like it should include faststart, which was introduced in 2013, right ?
    Any ideas what could be going on ?

    Thanks very much,

    Bob

  • How do I use ffmpeg to put HTML text overlay in a video ? [closed]

    29 septembre 2020, par Tom

    How do I use ffmpeg to put HTML text overlay in a video ?

    


    I have a web page where a user can write html text with online editor tool. I want to overlay the html text to a video. What can I do ?
Here is a sample HTML text.

    


    <p style="color:#000;"><span style="color:#FFFFFF;"><span style="font-size:48px;"><span style="font-family:philosopher;">Best Wishes for </span></span></span></p><p style="color:#000;"><span style="color:#FFFFFF;"><span style="font-size:48px;"><span style="font-family:philosopher;">a joyful and prosperous<br />New Year!</span></span></span></p>&#xA;

    &#xA;