
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (81)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (6552)
-
combining 2 trimmed audio files in python not working
22 mars 2021, par Leo29 MaxIve been trying to get this to work for a while to no results.


import tkinter.filedialog as filedialog
import soundfile as sf
import math 

yeah = filedialog.askopenfilename(initialdir = "/",title = "select wav file")
f = sf.SoundFile(yeah)
length = len(f) / f.samplerate
stream = ffmpeg.input(yeah)
first = stream.audio.filter('atrim',start=0,end=1)
out = ffmpeg.output(first, "output2.wav")
ffmpeg.run_async(out)



any help is appreciated ! thanks.


-
Add two images and two text in video using ffmpeg ?
15 décembre 2016, par Amit Jangirffmpeg -i raw_video.mp4 -i watermark.png -filter_complex "[0:v]drawtext=fontfile=font.ttf:text='Lorem ipsum dolor sit amet, consectetur adipisicing elit':fontcolor=black@1.0:fontsize=24:x=20:y=259[text];[text][1:v]overlay=215:0[filtered]" -map "[filtered]" -codec:v libx264 -codec:a copy output.mp4
this code can add a photo and a text to image but can i add multiple photo and text at same time in video ?
-
Combining Opencv Raw frames with Microphone Audio stream Using ffmpeg
10 août 2022, par Abhishek VatsI am trying to build a sports analysis platform where I have a deep learning model which processes Live video(RTMP/Webcam) frames, applies overlays,score etc. and then I need to combine it with microphone audio and rebroadcast with audio and video in sync. I think I need the presentation time stamps of the frames (Since AI frame processing takes variable time) and somehow provide ffmpeg with it but I'm lost and could not find a similar example doing this.