
Recherche avancée
Autres articles (86)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
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 (12383)
-
Please tell us how to set up the option of HLS ffmpeg ?
17 décembre 2014, par Mr.ParkMy ffmpeg Option :
ffmpeg -i test.mp4 -max_delay 50000 -map 0:v -map 0:a -c copy -flags:v +global_header -bsf:v h264_mp4toannexb -f ssegment -segment_time 10 -segment_list playlist.m3u8 -segment_format mpegts -initial_offset 10 segment_%05d.ts
if the WIFI, .m3u8 file plays not loading.
if the 3G, the loading takes longer.
my Works :
.m3u8 URL :
http://mytest/test/test.m3u8
Simply call this URL into browser
my Question is :
Question 1.
Can I split the HD video in .mp4 smaller capacity .ts files to .m3u8 file through the option of ffmpeg ?Question 2.
.m3u8 when you play there a set way of WIFI and 3G options for ffmpeg ? -
avformat/hlsenc : added segment file deletion
8 décembre 2014, par Christian Sulowayavformat/hlsenc : added segment file deletion
This option flag deletes segment files removed from the playlist after a
period of time equal to the duration of the segment plus the duration of
the playlist.Signed-off-by : Christian Suloway <csuloway@globaleagleent.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
my own tv news channel - using vlc streaming
6 janvier 2015, par SledgehammerPLI want to create my own tv channel (using vlc streaming).
And for now - it works great :cvlc --sout-keep --loop --sout '#standard{access=http,mux=ts,dst=:2000}' file.avi
But i have two problems :
1st : how to make a playlist, which i can modify without breaking the streaming (I thought about playlist with file1.avi- file10.avi, which all are symlinks, so when i’m sure, that file2 is playing, I can change symlink for file1 -but maybe there is something beter ?
2ns : I want to add logo, and news ticker - adding logo is quite easy, but ticker looks hard : for now i know, that I have to use transcode sfilter, something likecvlc --sout-keep --loop --sout '#transcode{soverlay, sfilter=marq{marquee="$N$_$T$_$D", position=5, size=14, opacity=255}, vb=600, vcodec=h264, venc=x264{bpyramid=none, weightp=0}}:standard{access=http,mux=ts,dst=:2000}' film.mp4
but the problem is that ticker doesn’t move - it changes, but not move
And I think if I can add logo twice - with ticker between logos - i think about layers :
1. movie
2. ticker background
3. ticker text
4. ticker frame (because i don’t want to scroll text from border to border)Any ideas ?