
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (78)
-
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe 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, parComme 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, parCertains 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 GangsterI 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 TahirI 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 SRK7KyrosI 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...