Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (25)

  • Supporting all media types

    13 avril 2011, par

    Unlike 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 (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP 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" (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un 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 (...)

Sur d’autres sites (2465)

  • ffmpeg with zoom, combine video & audio

    30 août 2021, par P Jewellery

    I have 4 input,

    


      

    1. Main video (No audio in the video)
    2. 


    3. logo.png (always stay on top right corner)
    4. 


    5. image.jpg (Locate at the end of video, Have different ratio with main video)
    6. 


    7. audio.mp3 (The only audio input)
    8. 


    


    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

    


      

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

      


    2. 


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

      


    4. 


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

      


    6. 


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

      


    8. 


    


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

    


  • Error opening ffmpeg subprocess in Python

    16 mai 2015, par Hyperion

    What 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 ?

  • kdenlive render settings for ipad [on hold]

    27 septembre 2015, par user2761325

    I’m using kdenlive 9.6 on Ubuntu, and would like to render videos for display on an iPad.

    I’ve tried using H.264 Profile but it won’t display on an iPad. I think this is because the profile (when I check using mp4info) is High@3.2, whereas per this link this should be max Main@3.1 to support iPad.

    Does anyone have profile settings I can paste in to get it to render in Main/3.1 please ?