
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (27)
-
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 -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
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 (9117)
-
Revision 248cf6f69f : mips dsp-ase r2 vp9 decoder loopfilter module optimizations (rebase) Change-Id :
13 novembre 2013, par Parag SalasakarChanged Paths :
Add /vp9/common/mips/dspr2/vp9_loopfilter_filters_dspr2.c
Add /vp9/common/mips/dspr2/vp9_loopfilter_filters_dspr2.h
Add /vp9/common/mips/dspr2/vp9_loopfilter_macros_dspr2.h
Add /vp9/common/mips/dspr2/vp9_loopfilter_masks_dspr2.h
Add /vp9/common/mips/dspr2/vp9_mbloop_loopfilter_dspr2.c
Add /vp9/common/mips/dspr2/vp9_mblpf_horiz_loopfilter_dspr2.c
Add /vp9/common/mips/dspr2/vp9_mblpf_vert_loopfilter_dspr2.c
Modify /vp9/common/vp9_rtcd_defs.sh
Modify /vp9/vp9_common.mk
mips dsp-ase r2 vp9 decoder loopfilter module optimizations (rebase)Change-Id : Ia7f640ca395e8deaac5986f19d11ab18d85eec2d
-
How to use fluent-ffmpeg module inside node.js scripts ?
6 avril 2016, par PrasanthI am using fluent-ffmpeg for compressing the images. Using command prompt png images compression working fine.
I tried to use node script for compressing images. Compressing jpg images working fine, but it is not supporting for png images. When compressing the PNG images below code throwing error.
Is there any attributes missing ?var targetPath = image path;
ffmpeg()
.input(targetPath)
.complexFilter('scale=486:-1')
.save(targetPath);Please help me to to resolve this issue.
-
"No such file or directory" sp.Popen module
27 mars 2016, par user3481652I am trying to take a video and convert it in audio , for this I am using ffmpeg in python. I run the following command but it gives me " No such file or directory" for the input file. Here’s the code-
FFMPEG_BIN = "ffmpeg"
import subprocess as sp
command = [FFMPEG_BIN, '-i', '/home/suryansh/Downloads/t.mp4']
pipe = sp.Popen(command, stdout = sp.PIPE)After executing this code I get
home/suryansh/Downloads/t.mp4: No such file or directory
but the file is their in the path specified.