Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (48)

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

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Les images

    15 mai 2013

Sur d’autres sites (7179)

  • textformat/tw_avio : Remove close_on_uninit param from create_file

    14 avril, par Andreas Rheinhardt
    textformat/tw_avio : Remove close_on_uninit param from create_file
    

    avtextwriter_create_file() creates an AVIOContext whose pointer
    resides in its private context. If it were not always closed on
    uninit, the AVIOContext would leak, so it makes no sense
    to have this parameter.

    Reviewed-by : softworkz . <softworkz-at-hotmail.com@ffmpeg.org>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffprobe.c
    • [DH] fftools/textformat/avtextwriters.h
    • [DH] fftools/textformat/tw_avio.c
  • fftools/opt_common : add time and datetime log flags

    7 février, par softworkz
    fftools/opt_common : add time and datetime log flags
    

    This commit adds two logging flags : 'time' and 'datetime'.

    Usage :

    ffmpeg -loglevel +time

    or

    ffmpeg -loglevel +datetime

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/fftools-common-opts.texi
    • [DH] fftools/opt_common.c
  • avutil/opt : Print out numeric values of option constants

    17 septembre 2019, par Soft Works
    avutil/opt : Print out numeric values of option constants
    

    It's often not obvious how option constants relate to numerical values.
    Defaults are sometimes printed as numbers and from/to are always printed as numbers.
    Printing the numeric values of options constants avoids this confusion.
    It also allows to see which constants are equivalent.

    Before this patch :

    -segment_list_type <int> E........ set the segment list type (from -1 to 4) (default -1)
    flat E........ flat format
    csv E........ csv format
    ext E........ extended format
    ffconcat E........ ffconcat format
    m3u8 E........ M3U8 format
    hls E........ Apple HTTP Live Streaming compatible

    Afterwards :

    -segment_list_type <int> E........ set the segment list type (from -1 to 4) (default -1)
    flat 0 E........ flat format
    csv 1 E........ csv format
    ext 3 E........ extended format
    ffconcat 4 E........ ffconcat format
    m3u8 2 E........ M3U8 format
    hls 2 E........ Apple HTTP Live Streaming compatible

    Signed-off-by : softworkz <softworkz@hotmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/opt.c