
Recherche avancée
Autres articles (47)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (8778)
-
How to understand H264/MP4 byte stream [on hold]
19 janvier 2018, par elpha01I am actually working on stream data and I have few problems that questioned me.
In a h264 stream, is there any byte data representing the start point and the end point of the stream or are the first bytes representing the first frame and can be removed for removing the frame ? Is it the same for a .264 file ?
Are NAL units corresponding the frames of the stream ? Is there exactly one NAL unit per frame ? Are all NAL units have their header 00 00 00 01 ? What is a NAL unit with no 32 bit size
What are SPS and PPS ? Is there exactly one of them per stream ? Are they necessary or optionnal ?
Is a mp4 stream can makes sense or is it a H264 stream ?
How can we recognize a mp4 stream and a H264 stream by looking byte data ?What does this error mean ?
"Format h264 detected only with low score of 1, misdetection possible !"I am actually receiving from a third party CCTV software a byte array for each frame. I don’t know if it’s a mp4 or h264 stream, I wonder if the data are even valid. I need to create a RTSP server and I’m using RTSP Sharp which seems to work very well. I should separate the byte data with the NAL unit, the SPS and the PPS.
Any indication that could help me to understand this codec would be appreciated.
-
installing ffmpeg on MAMP
3 août 2012, par bethI'm attempting to follow this tutorial : http://drupal.org/node/1464236 on installing ffmpeg on MAMP (for use with Drupal, which is incidental)
I'm stuck here :
You should also execute in your Terminal
which php pecl phpize
which should point to your MAMP installation :
/Applications/MAMP/bin/php/php5.x.x/bin
...but when I do it,
which php pecl phpize
says it's pointing to/usr/bin/php
(and pecl and phpize respectively). If I doln /usr/bin/php /Applications/MAMP/bin/php/php5.3.6/bin/php
it says 'file already exists'. How do I point to the right file ? -
Anomalie #4290 (Nouveau) : Bug : Expressions régulières, certaines syntaxes ne répondent pas ce qu...
15 février 2019, par Joachim SENE1. Les expressions régulières, dans SPIP, n’acceptent pas la syntaxe 3 pour dire "exactement 3 occurrences".
2. Le caractère "." semble mal géré quand le cherche avec \.
3. En revanche le caractère "." réagit bien quand on veut l’exclureExemple 1
titre==^([0-9]+\.{1}\s{1}.+)
est censé me renvoyer les articles dont le titre commence par une suite de chiffres, suivi d’un point puis d’un espace, puis de texte comme 01. titre ou 12. un autre titre, mais pas 27 septembre qui ne possède pas le point séparateur.
Cela fait planter la boucle : "_texte mal formé_" et "_fin de boucle non trouvée_".
Code de la regex d’exemple pourtant testé ok avec un outil php comme le site de validation https://regex101.com/Exemple 2
^([0-9]+\.+\s+)
même tentative mais en demandant : le début par une suite de chiffres, le caractère point 1 fois ou plus, un espace une fois au plus
(ce qui me suffirait à vrai dire)
Cela renvoie aussi les articles dont le titre ne comporte pas le "." après les chiffres, comme "27 septembre" par exemple.
Testé ok avec regex101Exemple 3
En revanche, le code suivant fonctionne bien en me renvoyer bien uniquement les articles comme 27 septembre^([0-9]+[^\.]\s+.)
où je demande bien les titres commençant par : chiffres, puis pas de point puis au moins 1 espace, et ce qu’on veut
Testé même résultat avec regex101