
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (89)
-
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 -
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 -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (12264)
-
Anomalie #4824 : problème de taille d’image
5 juillet 2021, par cedric -Oui mais si on passe L92 parce qu’on a activé le redimensionnement, on remets à jour le contenu de la variable
$infos
avec la largeur et la hauteur de l’image redimensionnée si on a bien réussi à la redimensionner.Donc :
- soit le redimensionnement a réussi, et l’image n’est plus de dimension supérieure aux dimensions d’origine et le test L107 donne un false
- soit le redimensionnement a échoué et l’image est toujours trop grande et on rentre bien dans le test L107Le test L107 est identique au L87, parce qu’entre temps le contenu de la variable
$infos
a pu changer du fait du redimensionnement.Le code me semble donc correct
-
How to buid ffmpeg with android-ndk-r10d in windows
26 avril 2015, par HosseinIn my application user can selects several images and create movie(mp4) with those images, For this reason i want to use ffmpeg library.
i have searched more than 2 days but did not find a good tutorial for build ffmpeg with ndk in windows.can any body describe me, how to do that ?(if you have any link, please share me)
i used roman10 tutorial and this is what i do :
1-i have decompressed "ffmpeg-2.6.2" folder into "android-ndk-r10d/sources".2-i have created "build_android.sh" file into "ffmpeg-2.6.2" folder and these are my build_android.sh codes :
#!/bin/bash
NDK=C:/Users/HAKHASIN/Desktop/android-ndk-r10d
SYSROOT=$NDK/platforms/android-9/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.8/prebuilt/windows-x86_64
function build_one
{
./configure \
--prefix=$PREFIX \
--enable-shared \
--disable-static \
--disable-doc \
--disable-ffmpeg \
--disable-ffplay \
--disable-ffprobe \
--disable-ffserver \
--disable-avdevice \
--disable-doc \
--disable-symver \
--cross-prefix=$TOOLCHAIN/bin/arm-linux-androideabi- \
--target-os=linux \
--arch=arm \
--enable-cross-compile \
--sysroot=$SYSROOT \
--extra-cflags="-Os -fpic $ADDI_CFLAGS" \
--extra-ldflags="$ADDI_LDFLAGS" \
$ADDITIONAL_CONFIGURE_FLAG
make clean
make
make install
}
CPU=arm
PREFIX=$(pwd)/android/$CPU
ADDI_CFLAGS="-marm"
build_one3- when write "sudo chmod +x build_android.sh" and "./build_android.sh" commands in cygwin, it not work correctly
please guide me
-
How to convert real pixel values to flutter logical pixel (Density Independent Pixel)
28 mars 2020, par prem pattnaikI am using flutter-ffmpeg package to overlay an image onto the video, and after overlay i am drawing a rectangle over that image but the issue is, ffmpeg overlays image using real pixel data and flutter drawing rectangle using logical pixel, so how can i convert real pixel of ffmpeg to logical pixel of flutter so that i can change overlay dimension of image to match with rectangle.