
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (109)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (14715)
-
Merge Audio and Video using ffmpeg - Python Lib [duplicate]
15 janvier 2021, par badri have tried


import ffmpeg
video = ffmpeg.input('video.mp4')
audio = ffmpeg.input('audio.mp3')
ffmpeg.merge_outputs(video, audio).run()



and it returns


TypeError: Expected incoming stream(s) to be of one of the following types: ffmpeg.nodes.OutputStream; got <class>
</class>


and i have tried


import ffmpeg
video = ffmpeg.input('video.mp4')
audio = ffmpeg.input('audio.mp3')
ffmpeg.concat(video, audio, v=1, a=1).output('finished_video.mp4').run()



and it returns


FileNotFoundError: [WinError 2] The system cannot find the file specified



also i did try


import subprocess 
subprocess.run("ffmpeg -i video.mp4 -i audio.mp3 -c copy output.mp4")



and it returns


'ffmpeg' is not recognized as an internal or external command



how can i do it right ?


-
Anomalie #4725 : SyntaxError : JSon.parse : unexpected character at line 1 column 1 of the JSON data
12 avril 2021, par Franck Dyop :)
J’ai réussi à reproduire et donc fait deux copie d’écran avec ce qui s’affiche dans "réseaux" de l’inspecteur :)
J’ai fait du montage, car c’était trop grandA savoir, si je clique sur le "En savoir plus", cela m’ouvre : https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Errors/Unexpected_type
-
Is there a way to analyse a video to find out its loudness and then correct it to ebu r128
14 novembre 2019, par A PersonI wanted to see if anyone know the best way I can analyse a audio of a video and find out it’s loudness.
I want to use this information to then correct the audio either through FFmpeg or other means.
The audio has to met https://tech.ebu.ch/docs/r/r128.pdf the ebu standard of loudness -23 and not higher than 0.5.is there a way to do this ?
I am having difficulties finding a solution.