
Recherche avancée
Autres articles (98)
-
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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (4436)
-
ffmpeg get info from http stream get bitrate
19 décembre 2016, par user2631534i im using ffprobe and ffmpeg and i im unable to get bitrate from video...i im uisng this command :
./ffmpeg -i http://fra1.ddns.net:97/live/test/test/24.m3u8
./ffprobe -i http://fra1.ddns.net:97/live/test/test/24.m3u8And this is what i get :
Input #0, hls,applehttp, from 'http://fra1.ddns.net:97/live/test/test/24.m3u8':
Duration: N/A, start: 27570.901933, bitrate: N/A
Program 0
Metadata:
variant_bitrate : 0
Stream #0:0: Video: h264 (High) ([27][0][0][0] / 0x001B), yuv420p, 720x576 [SAR 64:45 DAR 16:9], 25 fps, 25 tbr, 90k tbn, 50 tbc
Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 48000 Hz, stereo, fltp, 139 kb/s
Stream #0:2: Subtitle: dvb_teletext ([6][0][0][0] / 0x0006)As you can see i im getting bitrate : N/A and could not get why ?
server is ubuntu 14,04 64-bit
-
http: Support setting custom User-Agent
6 mars 2014, par Clément Bœsch -
Local file creation of ffmpeg hls http stream
10 juillet 2018, par EmilianAfter researching all the options for ffmpeg hls streaming and setting it up for uploading to a http server i encountered a problem, ffmpeg also creates local files for the segment/playlist in the current working directory.
What im trying to achieve is upload to a server and serve the segments and playlist from memory and not from disk. Tried setting a http url for segments like this :
ffmpeg -re -i filter_test.ts -f hls -hls_segment_filename http://localhost:3000/segment/playlist_%03d.ts -method PUT http://localhost:3000/segment/playlist.m3u8
but that also didnt work.
Is there any way to stop ffmpeg from creating local files for the hls stream and only upload them to the server ?
In the logs it says
[hls @ 00000274041104e0] Opening 'http://localhost:3000/segment/playlist_000.ts' for writing
[http @ 00000274046a2fa0] request: POST /segment/playlist_000.ts HTTP/1.1but nothing about writing it to a file.