Recherche avancée

Médias (91)

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9721)

  • avcodec/ac3enc : Don't presume ch_layout to be AV_CHANNEL_ORDER_NATIVE

    7 avril 2024, par Andreas Rheinhardt
    avcodec/ac3enc : Don't presume ch_layout to be AV_CHANNEL_ORDER_NATIVE
    

    It is perfectly legal for users to use a custom layout
    that is equivalent to a supported native one.
    In this case the union in AVChannelLayout is not an uint64_t mask,
    but a pointer to a custom map.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/ac3enc.c
  • Unrecognized option 'preset' with ubuntu 12.04 and ffmpeg

    5 novembre 2013, par hyperrjas

    I have compiled ffmpeg with the guide How To Compile FFmpeg and x264 on Ubuntu.

    Now I'm trying upload a .mp4 file to encode. However I get this error now :

    ffmpeg version git-2013-11-05-934e489 Copyright (c) 2000-2013 the FFmpeg developers
     built on Nov  5 2013 13:58:43 with gcc 4.6 (Ubuntu/Linaro 4.6.3-1ubuntu5)
     configuration: --enable-gpl --enable-libass --enable-libfaac --enable-libfdk-aac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-librtmp --enable-libtheora --enable-libvorbis --enable-libvpx --enable-x11grab --enable-nonfree --enable-version3
     libavutil      52. 51.100 / 52. 51.100
     libavcodec     55. 41.100 / 55. 41.100
     libavformat    55. 21.100 / 55. 21.100
     libavdevice    55.  5.100 / 55.  5.100
     libavfilter     3. 90.101 /  3. 90.101
     libswscale      2.  5.101 /  2.  5.101
     libswresample   0. 17.104 /  0. 17.104
     libpostproc    52.  3.100 / 52.  3.100
    Unrecognized option &#39;preset&#39;.
    Error splitting the argument list: Option not found

    Errors: no output file created.

    This is the ruby methods to encode :

    case format
     when &#39;mp4&#39;
      h[:video_codec] = &#39;libx264&#39;
      h[:audio_codec] = &#39;libfaac&#39;
      h[:custom] = &#39;-qscale 0 -preset slow -g 30&#39;
     when &#39;ogv&#39;
      h[:video_codec] = &#39;libtheora&#39;
      h[:audio_codec] = &#39;libvorbis&#39;
      h[:custom] = &#39;-b 1500k -ab 160000 -g 30&#39;
     when &#39;webm&#39;
      h[:video_codec] = &#39;libvpx&#39;
      h[:audio_codec] = &#39;libvorbis&#39;
      h[:custom] = &#39;-b 1500k -ab 160000 -f webm -g 30&#39;
    end
  • Multiply the video with a scalar with FFMPEG

    16 novembre 2020, par Terpsiphone

    I have to adjust a video which was too dark. In openCV, I simply used Img.Mul() to multiply each of the RGB band with a same scalar and got good result.

    &#xA;

    Could one do the equivalent operation with FFMPEG ? I tried eq with contrast and brightness, but it was not quite the same thing.

    &#xA;

    Edit : thanks to a clue in @VC.One's answer below I was able to emulate Img.Mul() with :

    &#xA;

    ffmpeg -i input.file -vf colorlevels=rimax=0.5:gimax=0.5:bimax=0.5 -c:a copy output.file&#xA;

    &#xA;