Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (107)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Youtube-dl : Download video with maximum FPS and change FPS using OpenCV

    8 mai 2021, par MmBaguette

    I'm trying to download a YouTube video using YouTube-dl and specifying a maximum FPS. I don't want the lowest FPS, but I also don't want an FPS higher than 30. The code below does not work, but it was my best attempt.

    


    ydl_opts = {
    'format': '(bestvideo[fps<30]/bestvideo)+bestaudio/best', # CHANGE FOR VIDEO
    'outtmpl': "youtube_video.%(ext)s",
}
print("Downloading YouTube video.")
                
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
     ydl.download([text])


    


    If not, can I change the FPS of a video using OpenCV ? I tried using cap.set(cv2.CAP_PROP_FPS) but this doesn't work either.

    


    cap = cv2.VideoCapture(file)
fps = cap.get(cv2.CAP_PROP_FPS)
print(fps) # prints 60.0
cap.set(cv2.CAP_PROP_FPS)
fps = cap.get(cv2.CAP_PROP_FPS)
print(fps) # 60.0 again


    


  • Directly download the output file to client desktop

    11 novembre 2020, par jsdbt

    I am processing a video file using ffmpeg, in AWS lambda. My file size is 1gb. I don't want to store the processed file in /tmp folder (or efs).

    


    Is there a way I can directly download the output file to the user's desktop, from AWS lambda ?

    


  • Freeze frames at a time on videos and slow down videos

    24 avril 2020, par Nguyễn Trọng

    Suppose I have an mp4 video with a duration of 60 seconds.

    



    I want to freeze 1 frame at the 10th second and 40th second and then extend them to about 3 seconds.
At the same time I want to increase the speed of the video to 2 times from the 1 to 20 seconds and 2 times the video slow from 30 to 60 seconds.
The video output I received was 3 + 3 + (20 - 1) * 2 + (30 - 20) + (60-30) * 2 = 108 seconds
Is there a way to do it in one statement ?

    



    Thank in advance and sorry for my bad english.