
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (74)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...)
Sur d’autres sites (5915)
-
h264 restream works when i have no audio in ffserver conf but does not work when i try to add audio
27 février 2014, par DnasoI am trying to restream an h264 video stream from a camera. All works well when I have NoAudio in my conf file. However when i add audio, even the video stream does not work. Has anyone ever encountered thiss ?
ffmpeg -i rtsp ://*** -s 320x240 -vcodec copy -acodec copy -s 320x240 -ab 64k http://*:8091/feed1.ffm
-
How does wrap_unicode option work when ffmpeg renders subtitles
12 septembre 2024, par BazingaThis is my complete command, which accepts the wrap_unicode option, but the option is not working


'/usr/local/ffmpeg/bin/ffmpeg' '-y' '-i' 'input.mp4' '-threads' '12' '-vcodec' 'libx264' '-acodec' 'aac' '-b:v' '1000k' '-refs' '6' '-coder' '1' '-sc_threshold' '40' '-flags' '+loop' '-me_range' '16' '-subq' '7' '-i_qfactor' '0.71' '-qcomp' '0.6' '-qdiff' '4' '-trellis' '1' '-b:a' '128k' '-vf' '[in]subtitles=test.srt:wrap_unicode=1:force_style='\''FontSize=12,FontName=Angsana New,PrimaryColour=&H00FFFFFF,BorderStyle=1,Outline=0.5,Shadow=1,MarginV=50'\''[out]' '-pass' '1' '-passlogfile' '/var/folders/xh/0xpfqmh57hb12ffvs5wy1v0w0000gn/T/ffmpeg-passes66e24b16ea0aa/pass-66e24b16ea47b' 'output.mp4'



Before that, I compiled libunibreak, libass(0.17.0) in order, and reinstalled ffmpeg.


I hope someone can help me understand where the problem caused this option to not take effect, this problem has been bothering me for some time, thank you very much !


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