Recherche avancée

Médias (91)

Autres articles (58)

  • 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 (9879)

  • Adding watermark to videos in website by using Transloadit and Ffmpeg

    3 août 2022, par Super David Gangster

    I really wish to have a watermark on all videos which are uploaded to my website.
I have found softwares which are called "Transloadit" "ffmpeg" and, which is supposed to do the work. There is no solid enough explanation from them which explains on how to do. I couldn't find any other link/video which explains. Does anyone have an idea on how it works ? A good explanation could help me and others in the future alot. Thank you

    


  • FFMPEG : Concatenating two videos and adding audio only to the second video

    29 septembre 2023, par Huzefa Tahir

    I have two videos v1 and v2 which I want to concat. I also want to add audio a2 to the second video. v1 may or may not have an audio. How can I do that in one ffmpeg script ?
This is how the output should be like :
| V1 | V2 |
| a1 ? | a2 |

    


    I am having trouble placing the audio a2 at the start of the v2. I can't seem to find a filter that does this and -map doesn't seem to work with this either as it places a2 at start of v1.

    


  • FFmpeg not splitting videos precisely

    23 novembre 2022, par SRK7Kyros

    I was trying to use FFmpeg to split videos into 30s segments, here is the full code :

    


    from tkinter import filedialog, Tk
import subprocess
import os
Tk().withdraw()
path_to_video = filedialog.askopenfilename()

segment_duration = input("Enter each segment duration in second: ")

os.chdir(os.path.dirname(__file__))
subprocess.run([
    "E:\\Programs\\FFmpeg\\ffmpeg-master-latest-win64-gpl\\bin\\ffmpeg.exe", 
    "-i", path_to_video, 
    "-c:", "copy", 
    "-map", "0", 
    "-segment_time", segment_duration, 
    "-f", "segment", 
    "-reset_timestamps", "1",
    "Output_%03d.mp4"])


    


    But it actually splits it into videos with really low precision, how can I fix it ? Another post regarding this topic suggested adding this line :

    


    "-force_key_frames", f"expr:gte(t,n_forced*{segment_duration})",


    


    But it didn't really work...