
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (71)
-
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 ;
-
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 (...) -
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11066)
-
Merge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’
4 février 2014, par Michael NiedermayerMerge commit ’e46ad30a808744ddf3855567e162292a4eaabac7’
* commit ’e46ad30a808744ddf3855567e162292a4eaabac7’ :
vp8 : use a fixed-size edge emu bufferConflicts :
libavcodec/vp8.c
libavcodec/vp8.hSee : face578d56c2d1375e40d5e2a28acc122132bc55
Merged-by : Michael Niedermayer <michaelni@gmx.at> -
how to stream from multiple unknown-beforehand mp4 files to html5 video tag
2 avril 2017, par Lana NovaI would like to enable the following flow :
- segment a video stream from a webcam using ffmpeg into mp4 files,
- transform those video files using opencv
- stream the resulting mp4 files using html5 video tag
I found that for #3 above I can use ffmpeg to transcode to HLS format :
sudo ffmpeg -i /tmp/edge-data/part-00000000.mp4 -profile:v baseline -level 3.0 -s 640x360 -start_number 5 -hls_time 10 -hls_list_size 0 -f hls /var/www/html/playlist.m3u8
and then use videojs to augment the html5 video tag and point it at the m3u8 playlist file generated by the ffmpeg command above.
My problem is that I have multiple mp4 files that are not known in advance. So, in a way, I need to be continuously adding items to the m3u8 playlist file.
I found I can do it manually by removing the EXIT subsection of the m3u8 file and appending paths to new .ts files manually. Is there an option to do that with ffmpeg instead ?
Is there an easier way to accomplish what I’m trying to do here ?
Thanks !
-
avcodec/vc1 : change the internal ordering of blocks within a macroblock
20 juin 2018, par Jerome Borsboomavcodec/vc1 : change the internal ordering of blocks within a macroblock
The overlap filter needs to cover a full macroblock vertical edge when the
FIELDTX value for two neighbouring macroblocks is not equal. By changing
the internal ordering of the blocks from row major to column major, we do
not need to reinterlace a FIELDTX coded macroblock before running the overlap
filter.Signed-off-by : Jerome Borsboom <jerome.borsboom@carpalis.nl>