
Recherche avancée
Médias (2)
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
Autres articles (88)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (17126)
-
How to apply different audio filters in multiple audio tracks using ffmpeg ? [closed]
13 novembre 2020, par H3rdellFolks.


I'm trying to apply different audio filters in multiple audio tracks using ffmpeg but with no luck so far. Here's my command (Windows) :


ffmpeg.exe -y -i "movie_in.mkv" -map_metadata -1 -map 0:v:0 -c:v copy -map 0:a:5 -c:a ac3 -b:a 384k -map 0:a:1 -c:a ac3 -ac 2 -b:a 192k -af:a:0 acompressor=attack=15:release=300:threshold=-25dB:ratio=15:knee=1dB:makeup=10dB -af:a:1 "volume=-10dB" "movie_out.mkv"


The output file is with both audios with 192k and with only the last filter applied (volume=-10dB).


So, with my command, ffmpeg are ignoring the bitrate and channels set for audio 0 and also ignoring the filter compressor for audio 0.


Log :
https://pastebin.com/4BgcSfhi


Any clues ?


-
movenc : Apply offsets on timestamps when peeking into interleaving queues
24 juin 2016, par Martin Storsjö -
YouTube live says not receiving data
17 novembre 2018, par Steve LobdellSo, I’m using ffmpeg. I can stream videos to YouTube live I’ve downloaded from the internet successfully using this command :
ffmpeg -re -i "C:\video.flv" -c:v libx264 -preset slow -crf 18 -c:a copy -f flv "rtmp://a.rtmp.youtube.com/live2/xyz"
When I try to stream a video that’s been recorded from a specific device, that is also flv and with same command, it’s not working. FFMpeg says it’s transmitting, no errors there. In the live dashboard on YouTube I get a green "Starting" briefly but then it goes grey to say it’s not receiving data. The only difference is the actual flv files.
Any idea why YouTube Live would say it’s not receiving any data instead of giving me an error, when it clearly is receiving it because it works with other video files ? Thanks