
Recherche avancée
Médias (3)
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (66)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (9628)
-
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...