
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (58)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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 (12068)
-
Révision 18830 : Correction du Mail des nouveautes :
19 décembre 2011, par cedric -le calcul de la date de dernier envoi reposait sur le mail.lock qui n’existe plus (cron). On le replace par la meta dernier_envoi_neuf
la balise #DATE_NOUVEAUTE se cale sur cette meta egalement
le calcul du squelette des nouveautes se fait via recuperer_fond, et on evacue le support du vieux (...)
-
v4l2 learning resources step by step [closed]
5 août 2023, par Mark WattsI intend to learn how v4l2 works and how is a hw codec integrated to do decoding
What resources do i need and where to start ? i'm new to kernel space too


- 

- Hardware board ? ( Raspberry pi or similar ?)
- Environment ( VMware ?)
- Example code with userspace Multimedia framework using v4l2 driver ( where can i see examples of this stuff that is already done ?)
- Documentation / turorials / videos










Ive come across some videos from bootlin and the kernel documentation . I want to know how to approach it methodically.


-
Disadvantages to creating/removing many hard links ?
6 novembre 2011, par agartlandI need to create hundreds to thousands of temporary hard or symbolic links that will be deleted shortly after creation. For my purposes both types of links will work (i.e. the target is not a directory and it always exists on the same file system)
As I understand it, symbolic links create a small file that contains the path to the original file. Whereas a hardlink creates a reference to the data in the same inode. So maybe if I am going to be creating/deleting thousands of these links is it better to be creating and deleting thousands of tiny files (symlinks) or thousands of these references (hardlinks) ? It seems like one taxes the hard drive (maybe fragmentation) while the other might tax the file system itself ? Where are inode references stored. Do I risk corrupting the file system by making so many hard links ? What about speed ?
Thanks for your expertise !
This a work around to be able to use ffmpeg to encode a movie out of an arbitrary subset of images from a directory. Since ffmpeg requires that the files be named properly (e.g. frame%04d.jpg) I realized I can just create hard/sym links to the subset of files and just name the links appropriately. This avoids renaming the original files and having to actually copy the data. It works great but it requires creating and deleting many thousands of links, repeatedly.
Sort of addresses this problem too I believe :
convert image sequence using ffmpeg