Recherche avancée

Médias (91)

Autres articles (45)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

  • Forced audio stream in mp4 container

    19 septembre 2014, par artem

    How can I set one of the audio streams (first) in mp4 container as "forced" ? I didn’t find this option in ffmpeg. May be there are some other tools to do it ?

    Here is an example for mkv container :

    ffmpeg -i test_orig.mkv 2>&1 | grep Stream
    Stream #0:0: Video: h264 (High), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 1k tbn, 50 tbc (default)
    Stream #0:1(ger): Audio: ac3, 48000 Hz, 5.1(side), s16, 448 kb/s (default) (forced)
    Stream #0:2(ger): Audio: ac3, 48000 Hz, 5.1(side), s16, 448 kb/s (forced)
    Stream #0:3(ger): Audio: ac3, 48000 Hz, 5.1(side), s16, 448 kb/s
    Stream #0:4(ger): Subtitle: dvd_subtitle (default)
    Stream #0:5(ger): Subtitle: dvd_subtitle (forced)
    Stream #0:6(ger): Subtitle: dvd_subtitle

    As you can see stream #0.1 is flagged as forced and default. I need to do the same for audio stream in mp4 container. I found a way to flag first audio stream as default in mp4 with ffmpeg, but I can’t flag it as "forced".

  • doc/filters/scale : do not explicitly state the default swscale flags value

    11 octobre 2013, par Stefano Sabatini
    doc/filters/scale : do not explicitly state the default swscale flags value
    

    This is done is order to avoid the need of synching scale with libswscale
    docs in case the libswscale default changes.

    • [DH] doc/filters.texi
  • avformat/dashdec : Don't leave representation in inconsistent state on error

    7 septembre 2020, par Andreas Rheinhardt
    avformat/dashdec : Don't leave representation in inconsistent state on error
    

    This currently doesn't cause any trouble, because the only caller did
    not clean up the representation upon error at all ; but fixing this is
    a prerequisite for doing so.

    Reviewed-by : Steven Liu <lq@chinaffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/dashdec.c