
Recherche avancée
Autres articles (93)
-
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 ) (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (6255)
-
Build ffmpeg on windows with libmfx
29 février 2016, par KevinAI’m trying to build ffmpeg static on windows using vc2013 update 5
It builds fine and links normally if i don’t use the--enable-libmfx
command
when i build using the following commandexport PKG_CONFIG_PATH=/c/mfx_dispatch:$PKG_CONFIG_PATH
export LIB="c:\mfx_dispatch\lib;$LIB"
export INCLUDE="c:\mfx_dispatch;$INCLUDE"
./configure --toolchain=msvc --enable-asm --enable-yasm --disable-shared --enable-static --disable-network --enable-libmfxI get this error
./compat/windows/mslink -nologo -LARGEAD
DRESSAWARE -I/mingw64/include -libpath:/mingw64/lib -out:./ffconf.aPjQdnnd.exe ./ffconf.srtZqKQC.o mfx.lib stdc++.lib psapi.lib advapi32.lib shell32.lib
LINK : fatal error LNK1181: cannot open input file 'stdc++.lib'
ERROR: libmfx not found using pkg-configI built libmfx using VS2013 also.
autoreconf -i
CC=cl ./configure
make
mv /c/mfx_dispatch/lib/libmfx.lib /c/mfx_dispatch/lib/mfx.lib #FFmpeg config looks for the wrong filename? -
ffplay : allow borderless playback windows
1er février 2017, par Lucas Sanderyffplay : allow borderless playback windows
For a pure video tile effect, and enabling better integration of playback windows
into other programs. It would improve the looks in many situations and avoid ugly
hacks like this : http://stackoverflow.com/q/31465630/315024Signed-off-by : Lucas Sandery <lucas-sandery@users.noreply.github.com>
Signed-off-by : Marton Balint <cus@passwd.hu> -
Python 3 subprocess.popen() doesn't work on linux. Works on windows [closed]
30 avril 2021, par user2628458process = subprocess.Popen(
 cmd, shell=True,
 stdout=subprocess.PIPE, stderr=subprocess.STDOUT,
 universal_newlines=True)
for line in process.stdout:
 # ...



I have this line that executes an FFmpeg job and throws out every line in the output to a variable. It works fine on Windows, but doesn't work at all on Linux. The
for
loop never gets executed. I can't find anything about this, or the difference between Windows and Linuxsubprocess.Popen()
. Can you please point me the right way to fix this ?