Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (68)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (6562)

  • How to split multiple videos 2.24 seconds before the end

    15 décembre 2019, par Leendert

    I have a folder with 100 videos, I need to split all videos into 2, the split needs to happen 2 seconds before the end of every video.

    I want to keep both parts of the video after the split.

    So far I have the code below, this will trim 2 seconds from the end of every video that is in de same folder as the .bat file.
    It will put the new videos inside of a folder called ’new files’.
    The problem is that the length of the video is not trimmed. Only audio and video. So the last 2 seconds will just be the last frame and no audio.

    for %%a in ("*.mp4") do ffmpeg -i "%%a" -filter_complex "[0]trim=2,setpts=PTS-STARTPTS[b];[b][0]overlay=shortest=1" -shortest -c:a copy "newfiles\%%~na.mp4" pause
  • extracting motion vectors in vp8 encoded videos

    30 juillet 2013, par Pavan K

    I tried visualizing the motion vectors using using ffplay with the vismv option. I could see them for x264 encoded videos. However I am not able to see them on vp8 encoded videos.

    Can I extract the motion vectors programatically using ffmpeg or some other way ?

  • How to merge 2 overlapping videos into one video using ffmpeg or opencv ?

    5 juin 2019, par Muhammad Umer

    Merging two videos is easy, been answered couple of times. What I have is multiple overlapping videos. A video might have overlaps with video before it. Meaning if video 1 covers 1-5 timeline then video 2 may overlap 1, and cover 3 to 8. Merging them as is would result in 1-5|3-8, when i need 1-8 only.

    Videos are alphabetically sorted.

    My general idea of solution is...

    • grab last frame of the video
    • if it’s first video continue
    • if it’s not first video, ie. 2nd, search for frame saved in previous steps frame by frame
    • if it reaches to last frame of current video then there is no overlap continue
    • if it founds a frame then clip 2nd video up to that frame inclusive and then go to next frame
    • once all videos have been analyzed, merge them into one video.

    I need to translate this to ffmpeg commands. Or opencv if that’s a better tool.

    If there is better way of doing that, I’m interested in that too.