
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (74)
-
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. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (16197)
-
Live Streaming over HTTP using CloudFront and FFMPEG having delay issue
23 avril 2021, par jitendra-gautamLive Streaming using CloudFront and FFMPEG having delay issue I am using the NodeJS server with FFMPEG and live streaming to CloudFront, which is then consumed by many people via CloudFront. Below is the data received at the user's end.


#EXTM3U
#EXT-X-VERSION:3
#EXT-X-MEDIA-SEQUENCE:1317
#EXT-X-ALLOW-CACHE:NO
#EXT-X-TARGETDURATION:1
#EXTINF:0.833333,
1317.ts
#EXTINF:0.833333,
1318.ts
#EXTINF:0.833333,
1319.ts



The problem is the next .ts file that is 1320.ts is taking time to create on the server, thus the user is seeing the loading sign, and when this 1320.ts is created on the server, thereafter only the user is able to see the next live stream frame. How can the streaming be continuous ?? Below is the FFMPEG command that is being used :


process = child_process.spawn('ffmpeg', commandArgs);




let commandArgs = [
 '-loglevel',
 'debug',
 '-protocol_whitelist',
 'pipe,udp,rtp,rtmp,http,https,tcp',
 '-fflags',
 '+genpts',
 '-f',
 'sdp',
 '-i',
 'pipe:0',
 '-c:v',
 'libx264',
 '-crf',
 '21',
 '-preset',
 'veryfast',
 '-g',
 '25',
 '-sc_threshold',
 '0',
 '-c:a',
 'aac',
 '-b:a',
 '128k',
 '-ac',
 '2',
 '-hls_flags',
 'delete_segments+append_list',
 '-f',
 'segment',
 '-segment_list_flags',
 'live',
 '-segment_time',
 '1',
 '-segment_list_size',
 '3',
 '-segment_format',
 'mpegts',
 '-segment_list',
 `${RECORD_FILE_LOCATION_PATH}/${fileName}.m3u8`,
 `-segment_list_type`,
 'm3u8',
 `${RECORD_FILE_LOCATION_PATH}/%d.ts`
];




-
Any alternative of Ffmpeg for Youtube live streaming app ?
26 avril 2017, par samir.k433In this youtube live streaming app they are using Ffmpeg for encoding audio and video, and then for streaming to server. It’s somehow complex for me (specifically the build tasks).
Is there any alternative instead of using Ffmpeg in this regard ? -
Mac App (Cocoa) for producing HTTP Live Streaming
11 mars 2013, par MichaelI am building a Mac OS X application (Cocoa) with XCode that captures a video source and outputs the video through HTTP Live Streaming (HLS). After doing a fair amount of research I am thinking that I should be able to use the following stack of elements in my app to make this happen...
- AVCaptureDevice
- AVCaptureSession
- AVCaptureVideoDataOutput
- FFMPEG
- mediastreamsegmenter
- CocoaHTTPServer
I would really appreciate some feedback as to whether I'm on the right track, or correction if I am mistaken. Obviously any advice, pointers, perhaps some sample code snippets would be so very helpful.
Many thanks in advance !