Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (14710)

  • fate : add a case for ticket #3229

    12 août 2019, par Zhong Li
    fate : add a case for ticket #3229
    

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Reviewed-by : Thilo Borgmann <thilo.borgmann@mail.de>
    Signed-off-by : Zhong Li <zhong.li@intel.com>

    • [DH] tests/fate/video.mak
    • [DH] tests/ref/fate/mjpeg-ticket3229
  • Anomalie #4562 : Suite #4468 : Unification des CSS pour les boutons et les icônes

    26 octobre 2020, par RastaPopoulos ♥

    Tiens je vois passer ça aujourd’hui à propos de l’accessibilité/affordance des boutons :
    https://seenthis.net/messages/882961

    Windows et le Web en 2020 sont terribles visuellement pour ces personnes.

    À quoi ressemble un bouton par exemple ? Bah : M

  • How to do multiple input with streamio-ffmpeg ?

    12 août 2020, par Yozuu

    I would like to recreate this ffmpeg line (which works well) in my rails app :

    &#xA;

    ffmpeg -i 1.mp4 -i 2.mp4 -filter_complex &#x27;[0] [1] afir=dry=10:wet=10&#x27; output.wav&#xA;

    &#xA;

    So here is my config :

    &#xA;

    module EncodingConstants&#xA;  PROCESSED_DEFAULTS = {&#xA;    resolution:           &#x27;500x400&#x27;,&#xA;    video_codec:          &#x27;libx264&#x27;,&#xA;    constant_rate_factor: &#x27;30&#x27;,&#xA;    frame_rate:           &#x27;25&#x27;,&#xA;    audio_codec:          &#x27;aac&#x27;,&#xA;    audio_bitrate:        &#x27;128k&#x27;,&#xA;    audio_sample_rate:    &#x27;48000&#x27;,&#xA;    progress: :processing_progress&#xA;  }.freeze&#xA;&#xA;  AUDIO_EFFECTS = {&#xA;    multi_effect: %w[-i /home/yozuu/2.mp4 -filter_complex [0] [1] afir=dry=10:wet=10]&#xA; }.freeze&#xA;

    &#xA;

    So Sidekiq send this back to me :

    &#xA;

    I, [2020-08-12T19:40:38.828081 #2142]  INFO -- : Running transcoding...&#xA;["/sbin/ffmpeg", "-y", "-i", "/home/yozuu/labo/video-project/tmp/1597254011-2142-0001-8820/1.mp4", "-vcodec", "libx264", "-acodec", "aac", "-s", "500x282", "-i", "/home/yozuu/2.mp4", "-filter_complex", "&#x27;[0]", "[1]", "afir=dry=10:wet=10&#x27;", "-r", "25", "-b:a", "128k", "-ar", "48000", "-aspect", "1.7730496453900708", "/home/yozuu/labo/video-project/tmp/1597254011-2142-0001-8820/1.mp4"]&#xA;&#xA;E, [2020-08-12T19:40:38.897575 #2142] ERROR -- : Failed encoding...&#xA;["/sbin/ffmpeg", "-y", "-i", "/home/yozuu/labo/video-project/tmp/1597254011-2142-0001-8820/1.mp4", "-vcodec", "libx264", "-acodec", "aac", "-s", "500x282", "-i", "/home/yozuu/2.mp4", "-filter_complex", "&#x27;[0]", "[1]", "afir=dry=10:wet=10&#x27;", "-r", "25", "-b:a", "128k", "-ar", "48000", "-aspect", "1.7730496453900708", "/home/yozuu/labo/video-project/tmp/1597254011-2142-0001-8820/1.mp4"]&#xA;&#xA;&#xA;.....&#xA;&#xA;Unknown decoder &#x27;libx264&#x27;&#xA;&#xA;Errors: no output file created. &#xA;&#xA;

    &#xA;

    I don't understand why because for me the command line ffmpeg seems correct.&#xA;Anyone have a idea ?&#xA;Thank you.

    &#xA;