Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (48)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

Sur d’autres sites (4906)

  • How can I call m3u8 with multiple audio

    26 février 2020, par desmeit

    I have the following playlist.m3u8 with multiple audio :

    #EXTM3U
    #EXT-X-VERSION:3

    #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio",LANGUAGE="fr",NAME="France",AUTOSELECT=NO,URI="fr/test.m3u8"
    #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio",LANGUAGE="en",NAME="English",AUTOSELECT=NO,URI="en/test.m3u8"

    #EXT-X-STREAM-INF:BANDWIDTH=800000,RESOLUTION=360x640,AUDIO="audio"
    640p.m3u8
    #EXT-X-STREAM-INF:BANDWIDTH=1400000,RESOLUTION=480x842,AUDIO="audio"
    842p.m3u8
    #EXT-X-STREAM-INF:BANDWIDTH=2800000,RESOLUTION=720x1280,AUDIO="audio"
    1280p.m3u8
    #EXT-X-STREAM-INF:BANDWIDTH=5000000,RESOLUTION=1080x1920,AUDIO="audio"
    1920p.m3u8

    if I only call the URL http://XXX.playlist.m3u8, the french audio file is played automatically. I know that the selection of the language in the native player at Apple is displayed like this :

    enter image description here

    Is there an additional possibility to select the language for example by parameters ?

    http://XXX.playlist.m3u8?LANGUAGE=DE for example

    And is it possible to run two audio files in parallel ?

  • unary : Convert to the new bitstream reader

    8 juin 2016, par Alexandra Hájková
    unary : Convert to the new bitstream reader
    
    • [DBH] libavcodec/aic.c
    • [DBH] libavcodec/alac.c
    • [DBH] libavcodec/alsdec.c
    • [DBH] libavcodec/apedec.c
    • [DBH] libavcodec/dca_xll.c
    • [DBH] libavcodec/dxtory.c
    • [DBH] libavcodec/ituh263dec.c
    • [DBH] libavcodec/mss4.c
    • [DBH] libavcodec/ralf.c
    • [DBH] libavcodec/takdec.c
    • [DBH] libavcodec/tta.c
    • [DBH] libavcodec/unary.h
    • [DBH] libavcodec/unary_legacy.h
    • [DBH] libavcodec/vc1.c
    • [DBH] libavcodec/vc1_block.c
    • [DBH] libavcodec/wavpack.c
    • [DBH] libavformat/mpc8.c
  • Ffmpeg : copy chapter and remove tags mkv files

    15 décembre 2018, par Chris

    I’m working with MKV files only. When I convert from original to target, video and audio works 100%. I however have issues copying the Chapters too, sometimes it works, other times not. The output file also contains 3 Tags I need to get rid of :

    Using MKVToolsNiX to check Output file :

    1. Entry - Global Tags
    2. Entries - Tags
    3. Entries - Tags

    My commandline looks like this :

    -map_metadata -1 -map 0:0 -map 0:1 -metadata:s:a:0 language=eng -metadata:s:v:0 language=eng -metadata:s:s:0 language=eng -c:v libx264 -s 1280x720 -pix_fmt yuv420p -b:v 2500k -r 30 -c:a ac3 -b:a 320k -ar 48000 -ac 6 -y

    Any help will be appreciated.

    Chris