
Recherche avancée
Autres articles (63)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8963)
-
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.