
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (63)
-
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 (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (5976)
-
ffmpeg webcam capture a/v out of sync
7 juillet 2014, par Cameron BallI’m running this command to capture video and audio from my webcam :
ffmpeg -y -f video4linux2 -s 320x240 -i /dev/video0 -f alsa -i "plughw:CARD=U0x46d0x825,DEV=0" -ac 2 -strict experimental Filename.mp4
It works, but the audio is about half a second behind the video (EG if I clap, when I watch the video I’ll hear the clap and then see me do it).
This is for an online stream, so I can’t fix it up later, it needs to be recorded correctly.
It always seems to be off by the same amount, so I’m trying to find an option to simply delay when audio starts recording, but I can’t figure it out.
Any ideas ?
-
I'm using the following code to convert YouTube videos into audio but getting error despite installing ffmpeg
31 décembre 2020, par Umar IqbalThis is the code I'm using and the error I'm getting :


Code :


from future import unicode_literals
import youtube_dl


ydl_opts = 
'format' : 'bestaudio/best',
'postprocessors' : [
'key' : 'FFmpegExtractAudio',
'preferredcodec' : 'mp3',
'preferredquality' : '192',
],



with youtube_dl.YoutubeDL(ydl_opts) as ydl :
ydl.download(['http://www.youtube.com/watch?v=BaW_jenozKc' ;])


Error :


DownloadError : ERROR : ffprobe/avprobe and ffmpeg/avconv not found.


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