Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (36)

  • 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

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

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

Sur d’autres sites (4009)

  • Fix description of —rice-partition-order in flac -H

    9 janvier 2016, par Thomas Zander
    Fix description of —rice-partition-order in flac -H
    

    This is more of a "human language versus programmer parlor" issue.
    src/flac/main.c will return usage error for an argument greater
    than FLAC__MAX_RICE_PARTITION_ORDER (15u).
    While in programming "0..16" usually means "from zero to 15", in
    natural human-to-human talk, it would rather mean "from zero to 16".
    This changes the wording a bit to avoid this misunderstanding.

    Closes : http://sourceforge.net/p/flac/bugs/352/
    Signed-off-by : Erik de Castro Lopo <erikd@mega-nerd.com>

    • [DH] src/flac/main.c
  • Encode to h265 with ffmpeg in batch

    20 septembre 2022, par Ricardo

    I have several Movies/Animes in Full HD and encoded in h264 (current market standard), and I need to perform the Encode to h265 of all these files (separated by folder and subfolders) to save space, which is the proper way to execute in batch (.bat file) ; below current code :

    &#xA;

    for %%f in (*.mkv, *.mp4) do (&#xA;    ffmpeg -i "%%a" -c:a copy -c:v libx265 -vtag hvc1 lossless=1 -preset veryslow "Out\%%~na.mkv"&#xA;)&#xA;

    &#xA;

    In order to have the best compression of the final file and better image quality (which is visually identical to the current h264 file)

    &#xA;

    Obs1 : I have both animations and movies and series with real people, can the "ffmpeg" configuration be different for each type ?

    &#xA;

    Obs2 : In most files have multiple audio and video tracks and multiple subtitles, it is necessary that all audio, video and subtitles remain in the final files.

    &#xA;

  • binkaudio : switch to the new send/receive API

    24 novembre 2016, par Anton Khirnov
    binkaudio : switch to the new send/receive API
    

    It is more natural for this codec and allows to avoid awkward constructs
    like "consuming 0 bytes from input". Also, keep a reference to the input
    packet to avoid unnecessary copying.

    • [DBH] libavcodec/binkaudio.c