
Recherche avancée
Autres articles (60)
-
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 ) (...) -
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 (9110)
-
How can i transform dvb subtitles into text format using FFMpeg within a live streaming or how can i optimize the dvb burning process ?
5 décembre 2018, par alexsuaI am working on a hls transcoder from any format to HLS and I need to encode multiple subtitles with the format "dvbsub" at the same time with the purpose of being selected by a client who interprets the m3u8 HLS playlist.
The main problem is that burning each dvbsub into a live video stream in this way :
"-filter_complex "[0:v][0:s:0]overlay[v0];[0:v][0:s:1]overlay[v1];[0:v][0:s:2]overlay[v2];......"
is a very CPU intensive task. (I have 8 or more dvbsub in the same stream).
Does Anyone know how to transform each dvbsub into a text format (webvtt for example) or if there is a way to optimize the process ? (I tried to perform this burning process with NVIDIA gpu but I have not achieved any improvement)
I read about OCR programs which can do the task but after days of research i still dont know how to do that.
Thanks in advance.
EDIT : The input is a live UDP signal. I need to do the transformation on the fly.
-
ffmpeg:Unable to broadcast to live stream from webcam
13 mai 2020, par gbenga ogunbuleI have this code that I believe should be able to grab from webcam and broadcast a live stream i.e. Users will be able to watch or stream live what there admin is doing at that moment in time.



I have this code for it



C:\Apache24\htdocs\v­ideo\assets\ffmpeg\b­in>ffmpeg -f dshow -i video="HP Webcam" -c:v libx264 -preset ultrafast -tune zerolatency -r 10 -async 1 -c:a libmp3lame -b:a 24k -ar 22050 -bsf:v h264_mp4toannexb -maxrate 750k -bufsize 3000k -f mpegt s C:\Apache24\htdocs\v­ideo\assets\uploads\­videos\en.mp4




Also notice I use the absolute path
mpegt s C:\Apache24\htdocs\v­ideo\assets\uploads\­videos\en.mp4
insteadlocalhost/video/assets/uploads/videos/en.mp4
and the reason is because, when I use the latter, it is recording the video into the folder where I run the command.


And this is the HTML code I wrote for it.



<video width="320" height="240" controls="controls">
 <source src="assets/uploads/videos/en.mp4" type="video/mp4">
Your browser does not support the video tag.
</source></video>




How do I online streaming using ffmpeg


-
Add movflags to top of mp4 file without using ffmpeg for a live RTSP stream
15 avril 2021, par Nidheesh VUpdate :
I have a video player in browser which plays mp4 videos though websocket. The player only supports mp4 file. When i checked normal mp4 fiels does not play in the player, a mp4 file with a "moovflags faststart " will only play on that player. For a allready stored file , this will work properly.
But In case of an livestream(RTSP), using ffmpeg will only work once the RTSP connection has terminated since the "moovflags faststart " flags will work once a connection has terminated properly.
Hope the above statements makes more sense.
Due to this behavior, am checking if there is any way to get the moovflasg at first or something


I am having RTSP live source and i need it to convert the RTSP to a mp4 file which has moov flags in the begining of the file.
I have checked with openrtsp to take a mp4 dump of the rtsp, but it only adds moov flags and other info on the footer of the mp4(onlky when openrtsp has closes the rtsp stream).
Ffmpeg has " -movflags faststart" to move the footer info to the header of the mp4 container.
Since i am having a RTSP live source, the video data will be comming back to back and there wont be any termination. The above ffmpeg command only works once the rtsp stream has terminated.


Is there any way we can make a mp4 container which contains the mp4 footer info present in the header itself so that i can use it for a live source ?


EDIT #1
I have video player which plays mp4 video files , it only support playback of a recorded mp4 file which is createtd using "-movflags faststart" , normal mp4 files does not play in that.
This is the player
https://github.com/sonysuqin/WasmVideoPlayer.
Since i am tryng to stream live video to the player, its not possible to use movflags faststart.