
Recherche avancée
Autres articles (45)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (10452)
-
recording live video stream from tv card using ffmpeg in windows
23 septembre 2015, par user2688423I want to capture thumbnail every 1 second from tv card(tv signal) using ffmpeg in windows.
first of all, to record live video from tv card, I tried below.
ffmpeg -f dshow -i video="SKYTV HD USB Maxx Video Capture" -r 20 -threads 0 D ://test.mkv
But it didn’t work.
the Error message is"[dshow@000000000034d920] Could not run filter
video=SKYTV HD USB Maxx Video Capture : Input/output error"I use the device called ’SKYTV HD USB Maxx Video Capture’ for getting tv signal(TV card).
(people usually suggest "
ffmpeg -f oss -i dev/dsp -f video4linux2 -i dev/video0/tmp/out.mpg
"
but I dont think it works at window. this is the error message i got : "Unknown input format: 'video4linux2'
")what should i do to record live video and get thumbnail every 1 second from tv card(tv signal) using ffmpeg in window ?
Please help..!
-
Stop ffmpeg rtmp live stream without cutting off video
30 juillet 2018, par Geige VI can stream fine using the command
ffmpeg -f alsa -ac 2 -i hw:0,0 -f x11grab -framerate 30 -video_size 1280x720 \
-i :0.0+0,0 -c:v libx264 -preset veryfast -maxrate 1984k -bufsize 3968k \
-vf "format=yuv420p" -g 60 -c:a aac -b:a 128k -ar 44100 \
-f flv rtmp://live.twitch.tv/app/<stream key="key"></stream>Platforms generally have a delay of 10 seconds for viewers. When I terminate the ffmpeg command, the stream ends immediately for the viewers and they miss the last 10 seconds of video.
How can I terminate the stream without the end of the video cutting off abruptly ?
-
Live Stream using .m3u8 and .ts files with iPhone as server
26 février 2015, par BhumitI am trying to accomplish a task to live stream from iPhone camera. I have done some research and found that i can use
.m3u8
files for streaming live video with should contain .ts(Mpeg-2)
files .Now the file which i have on my iPhone is
.mp4
file and it does not work with .m3u8, so i figured out i will have to convert.mp4
to.ts
for that , but i have not succeeded in doing so.I found that it is possible to convert video ffmpeg lib as mentioned in this article here. I have successfully imported
ffmpeg
library but not able figure out how can i use it to convert a video as i am using this for first time.One another thing apple documentation says
There are a number of hardware and software encoders that can create
MPEG-2 transport streams carrying MPEG-4 video and AAC audio in real
time.What is being said here ? is there any other way i can use .mp4 files for live streaming without converting them from iOS ?
Let me know if i am not clear, i can provide more information .Any suggestion is appreciated. I would like to know am i on a right path here ?
EDIT
I am adding more info to my question, so basically what i am asking is , we can convert .mp4 video to .ts using following command
ffmpeg -i file.mp4 -acodec libfaac -vcodec libx264 -an -map 0 -f segment -segment_time 10 -segment_list test.m3u8 -segment_format mpegts -vbsf h264_mp4toannexb -flags -global_header stream%05d.ts
How can i use ffmpeg library to do what this command does in iOS.