
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (57)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (8458)
-
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.