Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (21)

  • Liste des distributions compatibles

    26 avril 2011, par

    Le tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (4967)

  • Map streams in ffmpeg based on title (to remove language variant)

    16 octobre 2024, par MappaM

    I have a few video files with English audio track and French audio track, because the family wants French and I prefer VO. With ffmpeg I can easily filter all tracks to keep eng and fre, the problem is there are multiple french dialects, one of them being Candian (VFQ).

    


    Therefore, with the following input streams :

    


      Stream #0:1(fre): Audio: eac3, 48000 Hz, 5.1(side), fltp, 768 kb/s (default)
    Metadata:
      title           : E-AC3 VFF
  Stream #0:2(fre): Subtitle: subrip (default) (forced)
    Metadata:
      title           : FORCED VFF
  Stream #0:3(fre): Audio: ac3, 48000 Hz, 5.1(side), fltp, 384 kb/s
    Metadata:
      title           : AC3 VFQ
  Stream #0:4(fre): Subtitle: subrip
    Metadata:
      title           : FORCED VFQ
  Stream #0:5(eng): Audio: eac3, 48000 Hz, 5.1(side), fltp, 768 kb/s
    Metadata:
      title           : E-AC3 VO


    


    The command -map 0:v: -map 0:m:language:eng -map 0:m:language:fre does not filter out anything, and I keep both audio which is wasteful. The only metadata that could be used to filter seems to be the title.

    


  • d3d11va : Check WINAPI_FAMILY instead of HAVE_LOADLIBRARY

    4 juillet 2017, par Martin Storsjö
    d3d11va : Check WINAPI_FAMILY instead of HAVE_LOADLIBRARY
    

    If using the winstore compat library, a fallback LoadLibrary
    function does exist, that only calls LoadPackagedLibrary though
    (which doesn't work for dynamically loading d3d11 DLLs).

    Therefore explicitly check the targeted API family instead.

    Make this check a reusable HAVE_* component which other parts
    of the libraries can check when necessary as well.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    Merged from Libav commit 4d330da006fe48178.

    • [DH] configure
    • [DH] libavutil/hwcontext_d3d11va.c
  • lavc/libvpxenc : prevent fifo from filling up

    7 juillet 2023, par David Lemler
    lavc/libvpxenc : prevent fifo from filling up
    

    Prevent the fifo used in encoding VPx videos from filling up and
    stopping encode when it reaches 21845 items, which happens when the
    video has more than that number of frames.

    Incorporated suggestion from James Zern to prevent calling
    frame_data_submit() at all when performing the first pass of a 2-pass
    encode so the fifo is not filled at all ; replaces original patch which
    drained the fifo after filling to prevent it from becoming full.

    Fixes the regression originally introduced in
    5bda4ec6c3cb6f286bb40dee4457c3c26e0f78cb

    Co-authored-by : James Zern <jzern@google.com>
    Signed-off-by : David Lemler <david@lemler.family>
    Signed-off-by : James Zern <jzern@google.com>

    • [DH] libavcodec/libvpxenc.c