
Recherche avancée
Autres articles (96)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)
Sur d’autres sites (11562)
-
Ffmpeg : How to remove text drawnusing drawtext
27 septembre 2015, par ramUsing the below command to draw text over a video file.
ffmpeg -i /home/user/source.mp4 -vf "drawtext=fontfile=/usr/share/fonts/truetype/msttcorefonts/Times_New_Roman_Bold.ttf: text='Sample text':fontsize=40:x=300:y=100" /home/user/destination.mp4
Question 1 : Will there be any way by which i could remove text drawn ("Sample text") from the final video "/home/user/destination.mp4" and have a new mp4 with the same video data without the text drawn ?
Question 2 : Is there any way to know what was the text added to the video "/home/user/destination.mp4" ?
-
Anomalie #3136 : Inscription visiteur - confirmation inscription manque de message
22 mars 2021, par cedric -Oui très bien : si pas de redirect minipres avec message de confirmation.
Mais il faut aussi gérer le cas où le jeton est invalide : actuellement on redirige sauvagement
https://git.spip.net/spip/spip/src/branch/master/ecrire/action/confirmer_inscription.php#L65
alors que là aussi une minipres pour dire "hé votre lien n’est plus valide, recommencez l’inscription" serait de rigueur.Bref, donc retour de cette action à fignoler et tester, je postpone mais si quelqu’un veut le faire on prends
-
FFmpeg doesn't compile with shared libraries
25 septembre 2015, par SerhanI ran the
./configure
script of FFmpeg as follows :PATH="$HOME/bin:$PATH" PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" ./configure --prefix="$HOME/ffmpeg_build" --pkg-config-flags="--static" --extra-cflags="-fPIC -m64 -I$HOME/ffmpeg_build/include" --extra-ldflags="-L$HOME/ffmpeg_build/lib" --bindir="$HOME/bin" --enable-gpl --enable-libass --enable-libfdk-aac --enable-libfreetype --enable-libmp3lame --enable-libopus --enable-libtheora --enable-libvorbis --enable-libvpx --enable-libx264 --enable-libx265 --enable-nonfree --enable-pic --extra-ldexeflags=-pie --enable-shared
When I try to compile FFmpeg with
--enable-shared
option as above, I get this error :/usr/bin/ld: /home/guel/ffmpeg_build/lib/libx264.a(common.o): relocation R_X86_64_32 against '.rodata.str1.1' can not be used when making a shared object; recompile with -fPIC
/home/guel/ffmpeg_build/lib/libx264.a: error adding symbols: Bad value
collect2: error: ld returned 1 exit statusI had added
--enable-pic
,--extra-ldexeflags=-pie
as well as-fPIC -m64
to--extra-cflags
in order to get rid of this relocation error as suggested here : https://www.ffmpeg.org/platform.htmlBut I’m still getting the same error. I need to compile ffmpeg with
--enable-shared
option to interface it with OpenCV, so I have to find a workaround here.