
Recherche avancée
Autres articles (40)
-
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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 (...)
Sur d’autres sites (7628)
-
FFmpeg not working (discord.py)
30 octobre 2017, par FrancescoCode :
channel = ctx.message.author.voice.voice_channel
link = "https://youtube.com/watch?v=videoidhere"
voice = await bot.join_voice_channel(channel)
player = voice.create_ytdl_player(link)
player.start()I’m getting this error :
AttributeError: 'generator' object has no attribute 'start'
Might FFmpeg be broken ? If yes, I can’t find a way to uninstall FFmpeg deleting the installation folder.
-
ffmpeg audio ducking with stereo and surround input
6 février 2021, par cyptusI got two input audio files for
ffmpeg
:

- 

- 5.1 channels with background music (
background.mp3
) - Stereo with voice (
voice.mp3
)






I want to merge this files into one ouput file (5.1), while reducing the background music (file 1) when voice (file 2) is played (called
audio ducking
).sidechaincompress
should be the correct filter for this.

ffmpeg -i background.mp3 -i voice.mp3 -filter_complex "\
[1:a]asplit=2[voice][voice2];\
[0:a][voice]sidechaincompress[mix];\
[voice2][mix]amerge" \
mixed.mp3



Is kind of able to produce this output, but is down-mixing the
background.mp3
to a stereo output (ffprobe
results inchannels=2
channel_layout=stereo
for the generatedmixed.mp3
).

How can i merge the streams
voice2
andmix
while keeping all channels ?

- 5.1 channels with background music (
-
Do H264 P&B frames contain pixels values ?
29 janvier 2019, par Ibrahim RadwanFrom what I understand, the I-frames are the ones containing the actual pixels values, and the P&B frames just contain some kind of indicators on how to construct the next frames from the already decoded frames.
With that being said, shouldn’t I get a completely blue video, if I’ve only changed the I-frames to be completely blue pictures ?
Thank you !