Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (78)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (9866)

  • 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.&#xA;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

    &#xA;

  • 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 ?&#xA;This is how the output should be like :&#xA;| V1 | V2 |&#xA;| a1 ? | a2 |

    &#xA;

    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.

    &#xA;

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

    &#xA;

    from tkinter import filedialog, Tk&#xA;import subprocess&#xA;import os&#xA;Tk().withdraw()&#xA;path_to_video = filedialog.askopenfilename()&#xA;&#xA;segment_duration = input("Enter each segment duration in second: ")&#xA;&#xA;os.chdir(os.path.dirname(__file__))&#xA;subprocess.run([&#xA;    "E:\\Programs\\FFmpeg\\ffmpeg-master-latest-win64-gpl\\bin\\ffmpeg.exe", &#xA;    "-i", path_to_video, &#xA;    "-c:", "copy", &#xA;    "-map", "0", &#xA;    "-segment_time", segment_duration, &#xA;    "-f", "segment", &#xA;    "-reset_timestamps", "1",&#xA;    "Output_%03d.mp4"])&#xA;

    &#xA;

    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 :

    &#xA;

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

    &#xA;

    But it didn't really work...

    &#xA;