
Recherche avancée
Autres articles (105)
-
List of compatible distributions
26 avril 2011, parThe 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 (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...)
Sur d’autres sites (14723)
-
movenc : fix QT chapter track character encoding
31 juillet 2014, par John Stebbins -
MAINTAINERS : remove myself as mailing list maintainer
21 mars 2019, par Lou Logan -
How to completely remove track[1] with FFMpeg
3 février 2017, par etherwe 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