Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (102)

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

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

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (10952)

  • mov : Do not try to parse multiple stsd for the same track

    11 février 2017, par Luca Barbato
    mov : Do not try to parse multiple stsd for the same track
    

    Bug-Id : 1017
    CC : libav-stable@libav.org

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavformat/mov.c
  • movenc : add support for track names in ISML manifests

    11 février 2017, par Jan Ekström
    movenc : add support for track names in ISML manifests
    

    This enables having multiple tracks of the same type which would
    be treated as different things by the media server (as opposed to
    different bit rate versions of the same track). According to the
    smooth streaming specification, just setting the systemLanguage
    tag is not enough to note that a track with the same attributes
    differs from another one.

    Reviewed-by : Martin
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/movenc.c
  • How to completely remove track[1] with FFMpeg

    3 février 2017, par ether

    we have a raw stream that we transform into AAC-LC using FFMpeg.
    We need to completely remove the track[1] (metadata/ID3) from it.
    We tried following these ideas : How to remove ID3 audio tag image (or metadata) from mp3 with ffmpeg
    but it only strips the information from track[1] at best.

    Here are the tests done so far :

    [FFMPEG - Commands tested]

    ffmpeg -hide_banner -f dshow -audio_buffer_size 250 -i "audio=Microphone" -vn -codec:a libfdk_aac -b:a 49152 -f flv rtmp://REMOTE_URL -rtmp_live live  

    ffmpeg -hide_banner -f dshow -audio_buffer_size 250 -i "audio=Microphone" -vn -codec:a libfdk_aac -b:a 49152 -map_metadata -1 -f flv rtmp://REMOTE_URL -rtmp_live live  

    ffmpeg -hide_banner -f dshow -audio_buffer_size 250 -i "audio=Microphone" -map 0:a -codec:a libfdk_aac -b:a 49152 -map_metadata -1 -f flv rtmp://REMOTE_URL -rtmp_live live  

    ffmpeg -hide_banner -f dshow -audio_buffer_size 250 -i "audio=Microphone" -vn -codec:a libfdk_aac -b:a 49152 -map_metadata:s:a -1 -f flv rtmp://REMOTE_URL -rtmp_live live  

    ffmpeg -hide_banner -f dshow -audio_buffer_size 250 -i "audio=Microphone" -vn -codec:a libfdk_aac -b:a 49152 -map_metadata -1,g:-1,g -f flv rtmp://REMOTE_URL -rtmp_live live  

    ffmpeg -hide_banner -f dshow -audio_buffer_size 250 -i "audio=Microphone" -vn -dn -codec:a libfdk_aac -b:a 49152 -f flv rtmp://REMOTE_URL -rtmp_live live

    [FFMPEG - Output]

    Guessed Channel Layout for  Input Stream #0.0 : stereo  
    Input #0, dshow, from 'audio=Microphone':  
     Duration: N/A, start: 952026.572000, bitrate: 1411 kb/s  
       Stream #0:0: Audio: pcm_s16le, 44100 Hz, 2 channels, s16, 1411 kb/s  
    [rtmp @ 000000000045fea0] Ignoring unsupported var reason  
    Output #0, flv, to 'rtmp://REMOTE_URL':  
     Metadata:  
       encoder         : Lavf57.14.100  
       Stream #0:0: Audio: aac (libfdk_aac) ([10][0][0][0] / 0x000A), 44100 Hz, stereo, s16, 49 kb/s  
       Metadata:  
         encoder         : Lavc57.15.100 libfdk_aac  
    Stream mapping:  
     Stream #0:0 -> #0:0 (pcm_s16le (native) -> aac (libfdk_aac))  
    Press [q] to stop, [?] for help  
    size=      26kB time=00:00:03.70 bitrate=  57.1kbits/s  

    [FFPlay]

    Input #0, hls,applehttp, from 'http://REMOTE_URL':  
     Duration: N/A, start: 79550.112778, bitrate: 50 kb/s  
     Program 0  
       Metadata:  
         variant_bitrate : 0  
       Stream #0:0: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 50 kb/s  
       Stream #0:1: Data: timed_id3 (ID3  / 0x20334449)

    We just need to completely remove track[1] altogether.
    Anyone has an idea how to accomplish this other than using -map_metadata -1, -vn, -map ?

    Thank you