
Recherche avancée
Autres articles (65)
-
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 ;
-
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 -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10009)
-
How to compile ffmpeg-2.5.3 on windows with android-ndk-r10d
12 janvier 2015, par chandan chaudharyI am trying to compile FFMPEG for android on windows using android-ndk-10d. I have followed number of tutorials but I am unable to compile it.
Can any one please help me to compile FFMPEG. I have referred many blogs and tutorials but I am unable to retrieve the expected result.I have used the following link roman10, but it isn’t working.
Please help me.
Thank You -
x86inc : Utilize the shadow space on 64-bit Windows
11 septembre 2013, par Henrik Gramnerx86inc : Utilize the shadow space on 64-bit Windows
Store XMM6 and XMM7 in the shadow space in functions that
clobbers them. This way we don’t have to adjust the stack
pointer as often, reducing the number of instructions as
well as code size.Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
-
Recursive ffmpeg batch script within Windows
30 septembre 2013, par TischComplete change to the question !
I now have the following script :
@echo off
REM keep a counter for files converted
set /A nfile=0
REM do not copy empty folders or any files
@echo Copying directory structure from %0 to %1 ...
xcopy /T %1 %2
REM walk directory structure and convert each file in quiet mode
for /R %1 %%v in (*.mp4, *.aac, *.flv, *.m4a, *.mp3) do (
echo converting "%%~nxv" ...
ffmpeg -v quiet -i "%%v" -vcodec libx264 "%2\%%~nv-converted.mp4"
set /A nfile+=1
)
echo Done! Converted %nfile% file(s)The videos are converting as expected when I run the following command :
convert ..\..\folder ..\..\converted\
However, the converted files end up in "converted" and not in their respective sub-folders.
Any ideas ?