
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (45)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6374)
-
c# - WAV file trimming and adding silence
2 janvier 2017, par Piotr CI have two recordings of same event, different lengths, started at different times. I want to synchronize them, time offset is known. I want to achieve the following :
- Align second one in time by the time offset.
- Trim second one to match the length of the first one
- When there is nothing to trim, add silence to match the length of the first one.
I found the way to trim the audio, but I couldn’t find solution for adding silence. Is there any way to do this with NAudio, ffmpeg or Aurio ?
-
ffmpeg playback speed lost on re-encoding
30 octobre 2018, par Salman Muhammadso I am trying to encode a video using myffmpeg with the following custom command to increase the playback speed by 10 times
-filter_complex "[0:v]setpts=PTS/10[v];[0:a]atempo=10.0[a]" -map "[v]" -map "[a]"
all goes well and the playback speed in output file is indeed 10x the original speed. however, when I use this output file as a source file for another encode job (or just a conversion to another format job) it loses the speed (goes back to normal). I’m not sure what I’m missing here as I am a beginner :) hoping for some help here.
-
How to include font in FFMPEG command without using the fontfile option ?
26 novembre 2020, par Avinash ModiI am using the following command to add watermark in my video using font TIMESNEWROMAN :


ffmpeg -i input.webm -vf "drawtext=text='© Krishna':fontfile=C//:/Windows/Fonts/times.ttf:x=(main_w-text_w-10):y=(main_h-text_h-10):fontsize=32:fontcolor=black:box=1:boxcolor=white@0.5: boxborderw=5" -preset ultrafast output.mp4



Now, I want to provide the font TIMESNEWROMAN or any other font instead of fontfile path. Is it possible to do that ?