
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (89)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
Sur d’autres sites (10981)
-
Revision 32759 : oups, correction : la propagation du env melangeait les parametres du menu ...
8 novembre 2009, par cedric@… — Logoups, correction :
la propagation du env melangeait les parametres du menu avec le env, ce qui entrainait des effets indesirables.
On isole le env dans une entree env du contexte du menu, et on expose aussi le menu dynamique -
How to get memory location in C# while using structure of C [on hold]
12 août 2017, par NirmalI am using C# to record a video from IP camera and I am using
libavcodec57
library for that. So if I need to write or read any property of a structure I need to useMarshal
class in C#, likeint width = Marshal.ReadInt32(in_codecctx, 40);
In above
in_codecctx
is of type IntPtr which pointsAVCodecContext
structure in C. So there are many properties in that likewidth
,height
etc and to read I need to use above line of code and for that I have to know the address of that property in the memory, which is base address of structure plus offset to that property. Base address I know but how to find actual offset of any property.One way is, I need to create same structure in C# which is defined in
libavcodec
library and use below code, this will give me offset of width from structure defined in C#.Marshal.OffsetOf(typeof(AVCodec.AVCodecContext),"width")
But this needs great efforts and still not accurate as it gave me some wrong values.
[Update from comment]
This link is for structure I need to use, is there any way to identify the offset of width and height, if yes how ?
-
creating simple DVD structure ?
24 mars 2016, par Rambo ActionhaI’m trying to make a DVD builder using C# , and I know that DVD’s have a specific structure which I tried to find and I couldn’t see any thing helpful , however , I found some half-completed posts about this structure , which indicate the following :
- all DVD videos must be in ’.VOB’ format
- all DVD Videos must be in a folder named "VIDEO_TS" and DVD audios in a folder named "AUDIO_TS" (specifically)
- "VIDEO_T" and "AUDIO_TS" must be burned to a DVD disk that follows a special filesystem called [UDF][1]
My question is If I managed to convert my video to suitable ".VOB" format , then I burn it to a disk after adding it to those folders , would it be playable in any DVD player ? I mean is this enough to have a simple DVD disk , and if it wouldn’t .. what would be the simplest DVD structure I can make ( without menus and chapters and other extra stuff ) ? any links related to DVD would be great