
Recherche avancée
Médias (1)
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (52)
-
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 -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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
Sur d’autres sites (10209)
-
FFMPEG Compilation .sh file fail to execute
30 juin 2016, par dipali trivediwhen i execute ./build.sh i get below error(i am using windows 64bit ,ffmpeg from git/ffmpeg 3.0.2,cygwin 64) :-
E :/AndroidStudio/android-ndk-r11c/toolchains/arm-linux-androideabi-4.9/prebuilt/windows-x86_64/bin/arm-linux-androideabi-gcc is unable to create an executable file.
C compiler test failed.
my code is :-
#!/bin/bash
NDK=E:/AndroidStudio/android-ndk-r11c
SYSROOT=$NDK/platforms/android-9/arch-arm/
TOOLCHAIN=$NDK/toolchains/arm-linux-androideabi-4.9/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_one -
FFMPEG & JNI : How to decode from URL
24 avril 2013, par Hafedh HaoualaI'm trying to make an android application that uses the FFMPEG for decoding videos that are not supported by Android ( not on all the devices at least ) : MPEG-TS & h264 Main Profile.
So, until now, I was able to use FFMPEG from JNI to decode some local video with the above specs, but my goal is to make the FFMPEG decode data from a streaming URL (http://127.0.0.1:1666/
) on which I will send buffers from an android service (for certain reasons)So, basically, I have two questions :
-
how I will be able to do the decoding from a streaming URL as I couldn't find any good example ?
-
when decoding my local MPEG-TS video, I've noticed that the playback speed is quite slow, and it happen that the video freezes for a while, even the Dolphin Player (based on FFMPEG) has the same behavior, and I don't know if is there some solution for this. Any suggestion ?
I appreciate your help.
-
-
Evolution #4637 (Fermé) : Jointure inutile pour critère "extension"
21 janvier 2021, par jluc -La boucle suivante
’tout>
produit un MYSQL simple :SELECT documents.fichier FROM spip_documents AS `documents` WHERE (documents.taille > 0 OR documents.distant=’oui’) AND (documents.extension IN (’png’,’jpg’,’gif’)) ORDER BY FIELD(documents.extension,’png’,’jpg’,’gif’)
Si à la boucle on ajoute une jointure avec un objet :
’toutobjet=articleid_objet=3>
une jointure supplémentaire avec la table spip_types_documents apparaît :SELECT documents.fichier FROM spip_documents AS `documents` INNER JOIN spip_documents_liens AS L1 ON ( L1.id_document = documents.id_document ) WHERE (documents.taille > 0 OR documents.distant=’oui’) AND (documents.extension IN (’png’,’jpg’,’gif’)) AND (L1.objet = ’article’) AND (L1.id_objet = 3) GROUP BY documents.id_document ORDER BY FIELD(documents.extension,’png’,’jpg’,’gif’)
Il me semble que cette jointure n’est pas plus utile pour cette 2eme boucle que pour la première et ne devrait pas être ajoutée.