
Recherche avancée
Médias (2)
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (61)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (4835)
-
web based audio converter
21 mai 2012, par ZoidbergI am building a rails based website with audio streaming component.
and I need some insight.
my search revealed that, the most preferred audio format for such a case is AAC with JPlayer
converting to AAC I tried to run SoX with Lame and libmad, i was not able to go from mp3 to aac.
now I'm trying to use the FFMPEG with faac enabled.
the idea is to upload and convert tracks to aac as a single process.
is my setup flawed ? the FFMPEG the way to go ? all insights are welcomed
-
Fix the handling of older 120 based deltas.
14 décembre 2013, par brandonaaronFix the handling of older 120 based deltas.
-
How to scale watermark based on video resolution in android using FFmpeg command ?
16 février 2023, par Ravi SorathiyaI want to scale the watermark size based on the given video resolution. but this cmd scales the watermark without respect to the original video.


I want to scale the watermark based on the resolution of the video. if
the video is in high resolution then the watermark will adjust that accordingly. visa versa in lower resolution it will scale accordingly.


please suggest me FFmpeg cmd the dynamically cmd that helps to scale the watermark based on video's resolution


val cmd = arrayOf(
 "-y",
 "-i",
 sourcePath,
 "-i",
 watermarkImagePath,
 "-filter_complex",
 "[1][0]scale2ref=w=oh*mdar:h=ih*0.06[logo][video];[video][logo]overlay=${position}",
 "-map",
 "0:a",
 "-c:v",
 "libx264",
 "-crf",
 "$bitrate",
 "-preset",
 "ultrafast",
 outputLocation.path
 )