
Recherche avancée
Autres articles (40)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 ) (...)
Sur d’autres sites (8096)
-
Microsoft Windows ICO demuxer
4 décembre 2011, par Peter RossMicrosoft Windows ICO demuxer
-
Java exec doesn't work in 64 bit Windows
4 juillet 2012, par dinesh707I am trying to run the following ffmpeg command using java exec call. It works well in a 32bit computer but in 64 bit computer it doesn't work. Can someone please help me to solve this issue.
When I try the same command in command prompt as admin it works. Here the target is to create a video file in the tomcat. But when I try as a normal user in commandprompt it didn't work. Can this be an issue with tomcat privileges ?
-
Windows console - BAT compatibility
10 novembre 2011, par MichaelI have a command line statement which works perfectly when manually typing it into the console, however, when I put it in a bat file it doesn't work.
for %f in (*.flac) do ffmpeg -i "%f" -acodec alac "%~nf.m4a"
Here is the error message when I try running the bat file
The following usage of the path operator in batch-parameter
substitution is invalid: %~nf.m4a"Is there any way to fix this ?
The statement converts flac files to alac files using the program ffmpeg.