
Recherche avancée
Médias (1)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
Autres articles (37)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (6011)
-
Q : FFMPEG - Applying three filters - three run FFMPEG or one ?
26 novembre 2018, par georgmannIs it possible to apply 3 filters at once ?
Step 1 :
ffmpeg -i "input_01.mp4" -y -s 1280x720 -b 3000k -acodec copy "output_01.mp4"
Step 2 :
ffmpeg -i "bg.mp4" -i "output_01.mp4" -y -filter_complex "overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2:shortest=1[out]" -b 3000k -map [out] -map 1:a -c:a copy "output_02.mp4"
Step 3 :
ffmpeg -i "output_02.mp4" -i logo.png -y -filter_complex overlay="(main_w/2)-(overlay_w/2):(main_h/2)-(overlay_h)/2" -b 3000k -codec:a copy "output_03.mp4"
Is this possible or do I have to run FFmpeg thrice ?
-
Restart environment and script during batch script
7 décembre 2024, par ninburaI've built a few FFmpeg powershell scripts for me and a few others to use and I'm attempting to make the setup and update process as easy as possible. The end goal is to be able to run 1 batch file that installs Chocolatey, FFmpeg, git, clones the github repo (for updates), and edits the Windows registry to add the actual FFmpeg powershell scripts / console programs to the Windows Explorer contextual menu. This way I just pass them the folder containing everything once and any time I change or add something to the project I can just tell them to run the batch file again, and presto everything is up to date.



However I'm struggling to find a way to install Chocolatey, then git with Chocolatey, and then run a git command with the execution of a single .bat file. From what I can tell after installing Chocolatey I need to restart the shell entirely before I can install git, and then I have to restart the shell again before I can use a git command. As of right now most of the actual processing is happening via Powershell scripts that are launched from the .bat file, and as each step is taken I update a txt file, attempt to restart the batch script, and read the txt file to pick up where I left off :



@echo off
echo Administrative permissions required. Detecting permissions...
echo.

net session >nul 2>&1
if %errorLevel% == 0 (
 echo Success: Administrative permissions confirmed.
 echo.
) else (
 echo Failure: Current permissions inadequate.

 PAUSE

 exit
)

set relativePath=%~dp0
set relativePath=%relativePath:~0,-1%

PowerShell -NoProfile -ExecutionPolicy Bypass -File "%relativePath%\Setup\CheckRequiredPackages.ps1" -relativePath "%relativePath%"

set /p step=<"%relativePath%\Setup\Step.txt"

if %step% == 1 (
 (echo 2) > "%relativePath%\Setup\Step.txt"

 PowerShell -NoProfile -ExecutionPolicy Bypass -File "%relativePath%\Setup\GetChocolatey.ps1"

 start "" "%relativePath%\RunMe.bat"

 exit
) 

if %step% == 2 (
 (echo 3) > "%relativePath%\Setup\Step.txt"

 PowerShell -NoProfile -ExecutionPolicy Bypass -File "%relativePath%\Setup\GetRequiredPackages.ps1"

 start "" "%relativePath%\RunMe.bat"

 exit
) 

if %step% == 3 (
 (echo 0) > "%relativePath%\Setup\Step.txt"

 PowerShell -NoProfile -ExecutionPolicy Bypass -File "%relativePath%\Setup\Update.ps1" -relativePath "%relativePath%"
) 

PAUSE
Exit




The problem is using the
start
command in the batch script doesn't seem to work, I'm guessing since that new process is spawned from the same process that handles the Chocolatey install it doesn't count as actually restarting the shell. Is there any way to actually restart the shell and somehow have the batch file start back up without user intervention ?

-
Joining Lots of clips with crossfade filter using FFmpeg
26 juillet 2020, par Mr. WhoI have many video-only clips and I would like to join them with crossfade filter using FFmpeg. My Idea was that I join first two then join it with the next and so on. I implemented the loop in the python and run bash commend using
os.system()
. My code has been demonstrated below :

out_n = '0.mp4' # output of step n (current step)
for i in range(1,10):
 out_np1 = 'mm%d.mp4'%(i) # output of step n+1 (next step)
 t0 = time.time() 
 o = os.system('ffmpeg -i %s -i %d.mp4 -f lavfi -i "color=black:s=1920x1080:d=9" -filter_complex "[0:v]format=pix_fmts=yuva420p,fade=t=out:st=4:d=1:alpha=1,setpts=PTS-STARTPTS[va0];[1:v]format=pix_fmts=yuva420p,fade=t=in:st=0:d=1:alpha=1,setpts=PTS-STARTPTS+4/TB[va1];[2:v][va0]overlay[over1];[over1][va1]overlay=format=yuv420[outv]" -vcodec libx264 -map [outv] %s'%(out_n, i, out_np1))
 print('# %d'%i,(time.time() - t0)/60,o)
 os.remove(out_n) 
 out_n = out_np1 



My Problem is that it won't work properly, the very last output does not even contain all of the last clip and there is no trace of previous ones.