
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 (87)
-
MediaSPIP version 0.1 Beta
16 April 2011, byMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Amélioration de la version de base
13 September 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Mise à jour de la version 0.1 vers 0.2
24 June 2013, byExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1); Installation des dépendances pour Smush; Installation de MediaInfo et FFprobe pour la récupération des métadonnées; On n’utilise plus ffmpeg2theora; On n’installe plus flvtool2 au profit de flvtool++; On n’installe plus ffmpeg-php qui n’est plus maintenu au profit de (...)
On other websites (10168)
-
Revision f92c0b1688: Abort if firstpass file does not exist This fixes a crash if the firstpass file
30 January 2015, by Adrian GrangeChanged Paths:
Modify /vpxstats.c
Abort if firstpass file does not existThis fixes a crash if the firstpass file does not
exist when doing a two-pass encode.Change-Id: I3a1a95d68d57125c63123d6208af7537f5a689a0
-
Crash with opencv video intitialisation
21 November 2013, by IngeborgI have the problem which is described here.
The extension i have already set correct.
What i have done regarding the suggestet Points on the link:Point 1: I have looked in my cmake file and ffmpeg, libavutil etc is all chosen.
Point 2: I thought all files are installed automatically in usr/src if you don't change it, isn't it?
Point 3: It is a new installation. But btw. how can i deinstall the lib?
Point 4: Shouldn't be the problem.
Thx in advance
Further infos:
Opensuse 12.3
Opencv-2.4.3
Qt4 EnvironmentC++ Commands used last:
VW.open(vsm, CV_FOURCC('F','L','V','1'), 25, vidImg.size(),!(vidImg.channels() == 1));
Filename in vsm: /home/Ingeborg/DA/videos/IMG-2013-11-19-22-3-5.avi
-
checkasm: Generalize crash handling
14 December 2023, by Martin Storsjöcheckasm: Generalize crash handling
This replaces the riscv specific handling from
7212466e735aa187d82f51dadbce957fe3da77f0 (which essentially is
reverted), with a different implementation of the same (plus a bit
more), based on the corresponding feature in dav1d's checkasm,
supporting both Unix and Windows.See in particular the dav1d commits
0b6ee30eab2400e4f85b735ad29a68a842c34e21,
0421f787ea592fd2cc74c887f20b8dc31393788b,
8501a4b20135f93a4c3b426468e2240e872949c5 and
d23e87f7aee26ddcf5f7a2e185112031477599a7, authored by Henrik Gramner.The overall approach compared to the existing implementation for
riscv is the same; set up a signal handler, store the state with
sigsetjmp, jump out of the crashing function with siglongjmp.The main difference is in what happens when the signal handler
is invoked. In the previous implementation, it would resume from
right before calling the crashing function, and then skip that call
based on the setjmp return value.In the imported implementation from dav1d, we return to right before
the check_func() call, which will skip testing the current function
(as the pointer is the same as it was before).Other differences are:
Support for other signal handling mechanisms (Windows
AddVectoredExceptionHandler)Using RtlCaptureContext/RtlRestoreContext instead of setjmp/longjmp
on Windows with SEHOnly catching signals once per function - if more than one
signal is delivered before signal handling is reenabled, any
signal is handled as it would without our handlerNot using an arch specific signal handler written in assembly
Signed-off-by: Martin Storsjö <martin@martin.st>