
Recherche avancée
Autres articles (99)
-
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (6339)
-
Error opening ffmpeg subprocess in Python
16 mai 2015, par HyperionWhat I want to do is opening a ffmpeg process in Python. My code look like this :
import subprocess
import os
def Main():
ffmpeg = "C:\ffmpeg\bin\ffmpeg.exe"
args = " -i C:\video.mp4 -r 1 -f image2 C:\FRAMES\frame-%03d.jpg"
subprocess.Popen(ffmpeg + args).wait()
Main()But even in this simple form I got always the same error :
Traceback (most recent call last):
File "C:/Users/Francesco/Desktop/test.py", line 9, in <module>
Main()
File "C:/Users/Francesco/Desktop/test.py", line 7, in Main
subprocess.Popen(ffmpeg + args).wait()
File "C:\Users\Francesco\Desktop\WinPython-64bit-2.7.9.4\python-2.7.9.amd64\lib\subprocess.py", line 710, in __init__
errread, errwrite)
File "C:\Users\Francesco\Desktop\WinPython-64bit-2.7.9.4\python-2.7.9.amd64\lib\subprocess.py", line 958, in _execute_child
startupinfo)
WindowsError: [Error 2] Impossibile trovare il file specificato
>>>
</module>What’s wrong ?
-
ffmpeg with zoom, combine video & audio
30 août 2021, par P JewelleryI have 4 input,


- 

- Main video (No audio in the video)
- logo.png (always stay on top right corner)
- image.jpg (Locate at the end of video, Have different ratio with main video)
- audio.mp3 (The only audio input)










The below code helped me to edit the main video.


for %%a in ("*.mp4") do c:\ffmpeg.exe -i "%%a" 
-filter_complex " 
[0:v]trim=0.13:2.5, setpts=PTS-STARTPTS [v0]; 
[0:v]trim=0.13:2.5, reverse,setpts=PTS-STARTPTS[v1]; 
[0:v]trim=28.5:31, reverse,setpts=PTS-STARTPTS [v2]; 
[0:v]trim=28.5:31,setpts=PTS-STARTPTS [v3]; 
[0:v]tpad=stop_mode=clone:stop_duration=2, trim=0.13:31,setpts=0.5*PTS-STARTPTS [v4];
[0:v]trim=30.95:31,tpad=stop_mode=clone:stop_duration=5,setpts=PTS-STARTPTS [v5]; 
[v0][v1][v2][v3][v4][v5]concat=n=6:v=1:a=0[out]" -map "[out]" "%%~dpnaf.mp4"



However, I want to


- 

-
add a logo at top right of the video throughout the whole video.


-
add an image.jpg at the end of my edited main video.


-
add the audio.mp3 throughout the whole final output video. (duration depends on the video.)


-
apply a continuous zoom in for [v0]&[v1] (Since v1 is reverse of v0, after the zooming, ending image of v1 is bigger than starting image of v0, so v0,v1 looks like a smooth zoom in video)












"scale=2160x2160,zoompan=z='min(max(zoom,pzoom)+0.01,5.0)':x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)':d=125:s=2160x2160",



and a continuous zoom out for [v3] & [v4]


All the about to be able to run through a single bat file.


-
does movie filter in ffmpeg 4.3.1 support png format picture
1er janvier 2021, par TONYI use ffmpeg's moive filter to add wartermark on my video.
The str is "const char *filter_descr = "movie=test.png:seek_point=3.2, scale=180 :-1, setpts=PTS-STARTPTS [over] ;[in] setpts=PTS-STARTPTS [main] ;[main][over] overlay=16:16 [out]" ;"
it shows that can't find codec, but if the wartermark picture is bmp ,then it's ok.
I found that the png code exists in ffmpeg, it should support png decoder.