
Recherche avancée
Autres articles (88)
-
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 (13222)
-
Revision f13b69d07c : Faster vp9_short_fdct4x4 and vp9_short_fdct8x4. Scalar path is about 1.3x faste
26 mars 2013, par Christian DuvivierChanged Paths : Modify /vp9/common/vp9_rtcd_defs.sh Modify /vp9/encoder/vp9_dct.c Delete /vp9/encoder/x86/vp9_dct_sse2.asm Modify /vp9/encoder/x86/vp9_dct_sse2_intrinsics.c Modify /vp9/vp9cx.mk Faster vp9_short_fdct4x4 and vp9_short_fdct8x4. Scalar path is about 1.3x faster (2.1% overall (...)
-
Revision 5b6d33f9af : Faster vp9_short_fdct4x4 and vp9_short_fdct8x4. Scalar path is about 1.3x faste
26 mars 2013, par Christian DuvivierChanged Paths : Modify /vp9/common/vp9_rtcd_defs.sh Modify /vp9/encoder/vp9_dct.c Delete /vp9/encoder/x86/vp9_dct_sse2.asm Modify /vp9/encoder/x86/vp9_dct_sse2_intrinsics.c Modify /vp9/vp9cx.mk Faster vp9_short_fdct4x4 and vp9_short_fdct8x4. Scalar path is about 1.3x faster (2.1% overall (...)
-
How to run one script after another in Apple Script
19 juillet 2015, par mskx4I’m trying with Apple Script to run three different scripts that would alow me to :
- Convert a purchased m4a file into an "anonymized" m4a file and extract its artwork (with ffmpeg)
- Attach the artwork to the file previously converted, since the converted file won’t maintain its artwork (with AtomicParsley)
- Remove the artwork from his path
I don’t have any kind of programming knowledge, I’ve collected different script from the web and tried to make an app that could do these 3 simple task :
on open argv
set paths to ""
repeat with f in argv
set paths to paths & quoted form of POSIX path of f & " "
end repeat
tell application "Terminal"
do script "for f in " & paths & "; do ffmpeg -i \"$f\" -acodec copy -y \"$f\" output.jpg; done"
activate
do script "for f in " & paths & "; do AtomicParsley \"$f\" --artwork output.jpg; done"
activate
do script "rm output. jpg"
activate
end tell
end openThe problem is that, when I drop a file on the app, it opens three terminal windows at once and it runs the three tasks in the same time, with the obvious result that the conversion fails : the first task overwrites the input file, and the second script should use the output of the first one as its input file. So I need the three scripts to be executed successively, one after another.