
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (103)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (5825)
-
Im trying to add Audio to a mute Video and it doesnt work
15 février 2021, par mybrainisrunningoutofmyearsI had two approaches :


1.ffmpeg-python


def addaudtovid(audpath,vidpath,savepath): 
 input_video = ffmpeg.input(vidpath)
 input_audio = ffmpeg.input(audpath)
 ffmpeg.concat(input_video, input_audio, v=1, a=1).output(savepath).run()



here for some reason it "cant find a file"(in the fourth line) but all files exist.
Tried this too :


subprocess.run("ffmpeg -i "+vidpath+" -i "+audpath+" -c copy "+savepath)



- 

- MoviePy.editor




Here the finished Video starts after about 3 seconds of blackscreen, but the Audio already starts at the beginning


videoclip = VideoFileClip(vidpath)
audioclip = AudioFileClip(audpath)
videoclip.audio = audioclip
videoclip.write_videofile(savepath)



The Audio and Video are exactly the same length


I am using Windows 10 python 3.8


I am happy about any idea how to fix it because I tried everything I could think and google of.


-
Discovering our premium on-premise features
-
after 10M ffmpeg stops saving video on nodejs
12 mai 2016, par cauchyI have a nodejs server running using express (express 4). I want to save the video from a few IP cameras on a lab on request. Everything works, but if the video is too long it doesn’t get saved (the limit seems to be 11M).
I tried using only the command line :
ffmpeg -i rtsp://192.168.1.189:554/ch01_sub.264 -strict -2 -vcodec
copy -vcodec copy test.mp4and this works. But I get into trouble as soon as I use node (note that this is in the node parser, no code in express. I get the same error when running the server) :
var child_process = require('child_process');
tmpProcess = child_process.spawn('ffmpeg',['-i','rtsp://192.168.1.189:554/ch01_sub.264','-strict','-2','-vcodec','copy','-vcodec','copy',"test.mp4"],{maxBuffer: 10000});this runs until test.mp4 is around 11M. tmpProcess is not killed, it keeps running. But after test.mp4 is of certain size I cannot play it back. I get an error saying that "This file contains no playable streams." (this is from Totem, but VLC doesn’t work either).
Changing maxBuffer doesn’t help. I’m trying to understand what buffer am I overflooding but I cannot get much info from the manual on the api of node.