
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (39)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (7562)
-
avcodec/atrac3 : Don't use too big VLC tables
23 octobre 2020, par Andreas Rheinhardtavcodec/atrac3 : Don't use too big VLC tables
The longest code of any of the VLC tables used is eight bits long, so
using nine bits long VLC tables is wasteful. Furthermore, there are only
seven VLC tables used, yet the code up until now made it look like there
should be eight. This has been corrected, too.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
avformat/argo_brp : allow v1.1 ASF streams to have a non-22050 sample rate in certain...
25 septembre 2020, par Zane van Iperenavformat/argo_brp : allow v1.1 ASF streams to have a non-22050 sample rate in certain circumstances
It seems that in files where the BASF block isn't first, v1.1 ASF streams are
allowed to be non-22050. Either this format is really inconsistent, or
FX Fighter and Croc just ignored the sample rate field, requiring the v1.1
restriction in the first place.This bumps the version to 1.2 in these streams so they're not "corrected".
Found in Alien Odyssey games files in :
./GRAPHICS/COMMBUNK/COMADD1,COMM2_1,2,3E,COMM3_2,3,4,5,6,FADE1,2.BRPSigned-off-by : Zane van Iperen <zane@zanevaniperen.com>
-
How to batch watermark videos with FFMPEG on a Mac [closed]
12 août 2020, par analogvidsI've seen a lot of code for scripts to batch convert and to batch watermark videos with FFMPEG but these are largely guides for windows. I need to know how to do this on a Mac. I've successfully written and run a shell script to batch convert videos :


for i in *.Avi; do ffmpeg -i "$i" -c:a aac -b:a 128k -c:v libx264 -preset veryslow "${i%}.mp4"; done)



I have also successfully run a command to convert and watermark videos individually :


ffmpeg -i test.MOV -i watermark.png -filter_complex "overlay=100:100" watermarked.mp4



I consistently get a syntax error when trying to combine these commands to create a script for batch watermarking. I do not need to batch convert in the same command, though having that option would be nice. Any guidance would be greatly appreciated.


for clarification, this is the script i created :


# !/bin/bash for i in *.MOV ; do ffmpeg -i "$i" -i watermark.jpeg -filter_complex “overlay=0” ”$I%.mp4" ; done


and this is the error message terminal spits out : ./batchwatermark10.sh : line 3 : unexpected EOF while looking for matching `"' ./batchwatermark10.sh : line 4 : syntax error : unexpected end of file


Thanks !