
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (79)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...)
Sur d’autres sites (9995)
-
Implementing Live Streaming Webinar Architecture - Need Guidance
21 septembre 2023, par vishnugplQuestion : I'm working on a project to implement a live streaming webinar platform, and I'm looking for guidance on the architecture and technologies to use. I have some specific requirements and constraints, and I'd appreciate any advice or pointers on how to get started.


Context :
I'm tasked with building a live streaming webinar platform from scratch for our organization. Here are some key requirements and constraints :


- 

-
Live Video Streaming : We need to support live video streaming for
webinars, workshops, and conferences. Low latency is crucial for
real-time interaction between presenters and attendees.


-
Scalability : The platform should be able to handle a large number of concurrent attendees, potentially thousands or more,
without compromising performance.


-
Security : Security is a top priority. We need to ensure that only authorized users can access the webinars, and we must protect
against unauthorized recording or distribution of the content.


-
User Interaction : Attendees should be able to ask questions, participate in polls, and interact with presenters in real-time.


-
Recording and Playback : We also want to provide recorded versions of past webinars for on-demand viewing (HLS).














Current Tech Stack :


- 

- Frontend : React
- Backend : Node.js with Express
- Database : MongoDB
- Cloud Hosting : AWS










Questions :


- 

-
What technologies or services are best suited for handling live video streaming with low latency ?


-
How can I ensure scalability in terms of both video streaming and handling a large number of users ?


-
What security measures should I consider to protect the content and user data ?


-
Are there any recommended frameworks or libraries for building interactive features like real-time chat and polling ?


-
What's the best approach for recording and serving on-demand webinar content ?














Additional Information :


- 

-
Budget is a consideration, so cost-effective solutions are preferred.


-
Any open-source or third-party tools that can simplify development are welcome.


-
I have experience with AWS, but I'm open to other cloud providers if they offer advantages for this project.










-
-
h264_qsv is choppy when live streaming [closed]
10 septembre 2023, par Devin DixonI am trying to do live streaming of video games using h264_qvs, but is choppy when compared to libx264. Here are some variations of the ffmpeg command I am running :


Variation 1


ffmpeg.exe -y -hwaccel qsv -i pipe:0 -vf "hwdownload,format=nv12" -c:v h264_qsv -video_size 1920x1080 -preset veryfast -global_quality 35 -look_ahead 0 -b:v 9000k -maxrate 12000k -bufsize 9000k -pix_fmt yuv420p -r 60 -g 120 -c:a aac -b:a 256k -ac 2 -ar 44100 -af afftdn -f tee -map 0 "[f=flv]rtmp://endpoint.example.com|[f=mp4]C\:\\Users\\me\\savedFile.mp4"



Variation 2 : Moved the scale inside the vf


ffmpeg.exe -y -hwaccel qsv -i pipe:0 -vf "hwdownload,format=nv12,scale=1920:1080" -c:v h264_qsv -preset veryfast -global_quality 35 -look_ahead 0 -b:v 9000k -maxrate 12000k -bufsize 9000k -pix_fmt yuv420p -r 60 -g 120 -c:a aac -b:a 256k -ac 2 -ar 44100 -af afftdn -f tee -map 0 "[f=flv]rtmp://endpoint.example.com|[f=mp4]C\:\\Users\\me\\savedFile.mp4"



Variation 3 : Using scale_qsv and removed -pix_fmt yuv420p


ffmpeg.exe -y -hwaccel qsv -i pipe:0 -vf "hwdownload,format=nv12,vpp_qsv=framerate=60,scale_qsv=w=1920:height=1080" -c:v h264_qsv -preset veryfast -global_quality 35 -look_ahead 0 -b:v 9000k -maxrate 12000k -bufsize 9000k -r 60 -g 120 -c:a aac -b:a 256k -ac 2 -ar 44100 -af afftdn -f tee -map 0 "[f=flv]rtmp://endpoint.example.com|[f=mp4]C\:\\Users\\me\\savedFile.mp4"



Variation 4 : Best Variation but still subpar to libx264, lag is 1 minute 30 seconds


ffmpeg.exe -y -hwaccel qsv -i pipe:0 -vf "vpp_qsv=framerate=60,scale_qsv=w=1920:h=1080" -c:v h264_qsv -preset veryfast -global_quality 25 -look_ahead 1 -b:v 9000k -maxrate 12000k -bufsize 9000k -g 120 -c:a aac -b:a 256k -ac 2 -ar 44100 -f tee -map 0 "[f=flv]rtmp://endpoint.example.com|[f=mp4]C\:\\Users\\me\\savedFile.mp4"



But no matter how I change it, the streaming is choppyl start/stop. What else shoud I be testing here for performance ?


-
Live streaming and simultaneous local/server video saving with Insta360/Theta 360 camera [closed]
13 août 2023, par FornowI'm currently working on a project that involves live streaming video from a 360 camera, specifically the Insta360 and Theta models, while also saving the streamed video either locally or on a remote server. I'm relatively new to both live streaming and working with 360 cameras, so I'm seeking guidance on the best approach to achieve this.


My primary goals are as follows :


- 

-
Live Streaming : I want to be able to stream the real-time video captured by the 360 camera to a web platform or application, allowing users to experience the immersive 360 content as it happens.


-
Simultaneous Video Saving : In addition to live streaming, I also need to save the streamed video. This can either be saved locally on the device running the streaming process or on a remote server. The saved video should ideally retain its 360 nature and high-quality resolution.








I've been researching various technologies and frameworks like WebRTC for live streaming, but I'm unsure about the compatibility and best practices when dealing specifically with 360 cameras like Insta360 and Theta. Additionally, I'm uncertain about the most efficient way to save the streamed video while maintaining its immersive properties.


If anyone has experience with live streaming from 360 cameras and simultaneously saving the content, could you please provide insights into the following :


- 

- Recommended libraries, SDKs, or frameworks for live streaming 360 video from Insta360 or Theta cameras.
- Tips for ensuring the streamed video retains its 360 attributes and high quality.
- Best practices for saving the streamed video either locally or on a remote server while the live stream is ongoing.








Any code examples, tutorials, or step-by-step guides would be greatly appreciated. Thank you in advance for your help !


-