
Advanced search
Medias (91)
-
DJ Z-trip - Victory Lap: The Obama Mix Pt. 2
15 September 2011
Updated: April 2013
Language: English
Type: Audio
-
Matmos - Action at a Distance
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Danger Mouse & Jemini - What U Sittin’ On? (starring Cee Lo and Tha Alkaholiks)
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Cornelius - Wataridori 2
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
Other articles (56)
-
(Dés)Activation de fonctionnalités (plugins)
18 February 2011, byPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Activation de l’inscription des visiteurs
12 April 2011, byIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Des sites réalisés avec MediaSPIP
2 May 2011, byCette 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.
On other websites (9184)
-
Revision 6eec73a747: Remove asm offset dependencies The obj_int_extract code is no longer worth main
31 July 2014, by JohannChanged Paths:
Delete /build/arm-msvs/obj_int_extract.bat
Modify /build/make/Android.mk
Modify /build/make/Makefile
Modify /build/make/configure.sh
Modify /build/make/gen_msvs_proj.sh
Modify /build/make/gen_msvs_vcxproj.sh
Modify /build/make/rtcd.pl
Delete /build/x86-msvs/obj_int_extract.bat
Modify /configure
Modify /libs.mk
Modify /solution.mk
Modify /test/quantize_test.cc
Modify /vp8/common/rtcd_defs.pl
Delete /vp8/encoder/arm/armv5te/boolhuff_armv5te.asm
Delete /vp8/encoder/arm/armv5te/vp8_packtokens_armv5.asm
Delete /vp8/encoder/arm/armv5te/vp8_packtokens_mbrow_armv5.asm
Delete /vp8/encoder/arm/armv5te/vp8_packtokens_partitions_armv5.asm
Delete /vp8/encoder/arm/armv6/vp8_fast_quantize_b_armv6.asm
Delete /vp8/encoder/arm/armv6/vp8_subtract_armv6.asm
Delete /vp8/encoder/arm/boolhuff_arm.c
Modify /vp8/encoder/bitstream.c
Modify /vp8/encoder/bitstream.h
Modify /vp8/encoder/encodeframe.c
Modify /vp8/encoder/ethreading.c
Modify /vp8/encoder/vp8_asm_enc_offsets.c
Modify /vp8/vp8cx.mk
Modify /vp8/vp8cx_arm.mk
Modify /vpx_ports/arm_cpudetect.c
Modify /vpx_scale/vpx_scale.mk
Modify /vpx_scale/vpx_scale_asm_offsets.c
Remove asm offset dependenciesThe obj_int_extract code is no longer worth maintaining. It creates
significant issues when adapting for different build systems and no
longer offers as significant of a performance benefit due to
improvements in intrinsics.Source files will remain until the various third-party builds are updated.
The neon fast quantizer has been moved to intrinsics. The armv6 version
has been removed because so few remaining targets require it.Compilers and processors have improved significantly since the
pack_tokens code was written. The assembly is no longer faster than the
C code.pack_tokens were the only optimizations for the armv5te targets so the targets
will be removed after the test infrastructure has been updated.BUG=710
Change-Id: Ic785b167cd9f95eeff31c7c76b7b736c07fb30eb
-
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize class org.bytedeco.javacpp.avutil"
12 December 2016, by Ajinkyapublic static class AVFormatContext extends Pointer {
static { Loader.load(); }
/** Default native constructor. */
public AVFormatContext() { super((Pointer)null); allocate(); }
/** Native array allocator. Access with {@link Pointer#position(long)}. */
public AVFormatContext(long size) { super((Pointer)null); allocateArray(size); }
/** Pointer cast constructor. Invokes {@link Pointer#Pointer(Pointer)}. */
public AVFormatContext(Pointer p) { super(p); }
private native void allocate();
private native void allocateArray(long size);
@Override public AVFormatContext position(long position) {
return (AVFormatContext)super.position(position);
}I’ve tried to run a java application with an FFMmpegFrameGrabber while trying to run on windows. However same jar file runs on linux with no exceptions.
I have included javacpp and javacv jars .
However while running on windows I am getting this error
main" java.lang.NoClassDefFoundError: Could not initialize class org.bytedeco.javacpp.avutil"Stacktrace of exception
Exception in thread "main" java.lang.NoClassDefFoundError: Could not initialize
class org.bytedeco.javacpp.avutil
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Unknown Source)
at org.bytedeco.javacpp.Loader.load(Loader.java:413)
at org.bytedeco.javacpp.Loader.load(Loader.java:381)
at org.bytedeco.javacpp.avformat$AVFormatContext.<clinit>(avformat.java:
2719)
at org.bytedeco.javacv.FFmpegFrameGrabber.startUnsafe(FFmpegFrameGrabber
.java:391)
at org.bytedeco.javacv.FFmpegFrameGrabber.start(FFmpegFrameGrabber.java:
385)
at testffmpeg.NewStreamer.StartandRestart(NewStreamer.java:191)
at testffmpeg.NewStreamer.<init>(NewStreamer.java:95)
at testffmpeg.NewStreamer.main(NewStreamer.java:91)
</init></clinit> -
Update delegation selectors to get rid of pseudo-selectors in favor of qSA. Use type=email on main demo for some manual verification. Update changelog.
28 July 2011, by Jörn Zaeffererm changelog.txt m demo/index.html m jquery.validate.js Update delegation selectors to get rid of pseudo-selectors in favor of qSA. Use type=email on main demo for some manual verification. Update changelog.