
Recherche avancée
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (9171)
-
avformat/movenc : allow writing out channel count in MP4 and 3GP
7 février 2023, par Jan Ekströmavformat/movenc : allow writing out channel count in MP4 and 3GP
ISOBMFF (14496-12) made this field ('channelcount') in the
AudioSampleEntry structure non-template¹ somewhere before the
release of the 2022 edition. As for ETSI TS 126 244 AKA 3GPP
file format (V16.1.0, 2020-10), it does not seem contain any
references limiting the channelcount entry in AudioSampleEntry
or in its own definition of EVSSampleEntry.fate-mov-mp4-chapters test had to be adjusted as it output a
mono vorbis stream, which would now be properly marked as such
in the container.1 : As per 14496-12 :
Fields shown as “template” in the box descriptions are fields
which are coded with a default value unless a derived
specification defines their use and permits writers to use
other values than the default. -
Playing fragmented mp4 doesnt continue playing
18 mai 2017, par advinerUsing ffmpeg I create an mp4 using my video camera as the source.
ffmpeg -f dshow -i video="Integrated Webcam":audio="Microphone (Realtek High Definition Audio)"^
-g 52^
-vcodec libx264 -pix_fmt yuv420p -profile:v baseline -level 3^
-f mp4 -movflags empty_moov+default_base_moof+frag_keyframe^
%OUTPUT%\video.mp4Works with IE11, Chrome and Firefox
And my html video tags :
<video controls="controls" autoplay="autoplay" style="width:640px;height:360px;">
<source src="http://localhost/video.mp4" type="video/mp4;codecs="avc1.42E01E, mp4a.40.2""></source>
</video>The node web server version just has src="http://localhost/" for the
using
I’ve tried nginx and a node version that I got from this site
The nginx doesnt do anything special. I just basically point the root to the folder so it sees the mp4.The problem is it only plays however much the webserver sees when the page is loaded. The file is still continuously growing. And if I refresh the page I can see the time length is now longer since the last time.
My question is how can I make the video tag continuously play the fragmented video data without stopping and refreshing the page (which starts from the beginning again) ?
-
Révision 20656 : L’histoire amusante de imagepalettetotruecolor()
18 juin 2013, par da@weeno.netLa fonction imagepalettetotruecolor() a été introduite par ARNO* avec
la révision r8317 en janvier 2007 (et améliorée par la suite).Six ans et demi après, une fonction du même nom est introduite dans
PHP 5.5. Par chance, elle a exactement le même comportement que la
nôtre. La seule différence c’est qu’elle renvoie un booleen alors que
nous on ne renvoie rien, donc dans ce sens ça ne pose pas de problème.On ajoute donc simplement une condition sur function_exists(). De cette
manière c’est notre fonction qui sera toujours utilisée sur les versions
de PHP actuelles, puis la fonction native sera utilisée sur les sites
tournant avec PHP 5.5 et suivantes. (Ferme #3016.)Il suffira ensuite de supprimer notre fonction dans quelques années quand
la version minimum de PHP pour faire tourner SPIP sera 5.5 ou supérieure.