
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (34)
-
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" (...) -
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 ;
-
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 (6186)
-
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.