Recherche avancée

Médias (91)

Autres articles (55)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6406)

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

    


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

    


  • 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