
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (48)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
Sur d’autres sites (6831)
-
Fix build script so -nodebug.js doesn't have a terminated comment, de…
7 juin 2017, par scottschillerFix build script so -nodebug.js doesn’t have a terminated comment, derp. Use same 12 lines as jslint rules have been moved into IIFE.
-
Android : Live Stream RMTP video from Wowza server
4 décembre 2013, par TamannaI am developing an android application in which i want to publish as well as stream a video..
What I want is :
-
My app record a video and that video is sent to server
-
The recorded vieo will ve streamed live to another android device at the
same time..
I have completed the first task using javac and ffmpeg
I am stuck in second task.. i have searched a lot to stream the video from server but didn't succeed..
I dont want to use WebView and play the video in It. I want RMTP player ..
This task has been completed in iOS.. I want dame for Android..
Can anyone suggest me some link to fulfill my task ???P.S. :
I am using wowza server and RMTP stream.. I would like to stream RMTP video(.flv).. If no solution avaliable. i can swicth to RSTP
-
-
ffmpeg convert rtmp audio/video stream to icecast2 audio/video stream
17 avril 2023, par Solomon ThatcherI've been using this command to convert my public rtmp audio/video stream to a local mp3 audio icecast2 stream, but I have been unable to do the same for both video and audio.


[Audio Only] (This works fine)

ffmpeg -re -i rtmp://162.142.xx.xxx:xxx/stream -vn -codec:a libmp3lame -b:a 128k -f mp3 -content_type audio/mpeg icecast://source:password@192.168.1.xxx:80/live


I've tried to re-write in order to support video, but I keep hitting dead ends


[Audio & Video Attempt] (this does not work)

ffmpeg -re -i rtmp://162.142.xx.xxx:xxx/stream -codec:v -f mpeg4 -b:v -f mpeg4 -content_type video/mpeg4 icecast://source:password@192.168.1.xxx:80/live


When I run this command, it gives me the error below asking for a suitable format.


$ ffmpeg -re -i rtmp://162.142.xx.xxx:xxx/stream -codec:v -f mpeg4 -b:v -f mpeg4 -content_type video/mpeg4 icecast://source:password@192.168.1.xxx:80/live
[h264 @ 0x5598ffbb8980] co located POCs unavailable
[h264 @ 0x5598ffbb8980] mmco: unref short failure
Input #0, flv, from 'rtmp://162.142.xx.xxx:xxx/stream':
 Metadata:
 |RtmpSampleAccess: true
 Server : NGINX RTMP (github.com/sergey-dryabzhinsky/nginx-rtmp-module)
 displayWidth : 1280
 displayHeight : 720
 fps : 48
 videokeyframe_frequency: 0
 profile :
 level :
 Duration: 00:00:00.00, start: 28117.779000, bitrate: N/A
 Stream #0:0: Audio: aac (LC), 48000 Hz, stereo, fltp, 327 kb/s
 Stream #0:1: Video: h264 (High), yuv420p(tv, bt709, progressive), 1280x720 [SAR 1:1 DAR 16:9], 2560 kb/s, 48 fps, 48 tbr, 1k tbn
[NULL @ 0x5598ffb8bec0] Unable to find a suitable output format for 'mpeg4'
mpeg4: Invalid argument



I am positive that icecast2 can support video streams, however on the few occasions that I was able to actively stream successfully to it, it only showed an empty video embed.


I've re-written the command for AV multiple times while referencing ffmpeg documentation, however my above attempt seems to be the closest (concept-wise) that I have gotten.


What flags/formatting might I be missing which are causing the stream not to work ?