
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (102)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
L’agrémenter visuellement
10 avril 2011MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté. -
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (8016)
-
RTP Packets to test RTSP Server
6 mars 2019, par stackjohnnyI am new to this domain, but I successfully setup RTSP server in one of the container and when running
./rtsp_media_server -l 8445 -s stream1 -p 8000
it is working fine. where
8445
is the expose port,stream1
is the stream name and8000
is the intake portURL :
rtsp://<host>:8445/stream1</host>
But I need RTP packets to be sent to port
8000
so that I can test the my rtsp media server perfectly.Do any online rtp server provides the same ?
I can see many sample rtsp media server is there like
rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov
, which I can test in VLC media player. but not sure how to do with RTP packets.Please correct me if my understanding is wrong and guide me.
-
PHP - How to track video conversion progress - Stop ffmpeg process in PHP web [closed]
21 mai 2022, par Mursaleen AhmadI am working on a PHP web project where multiple users will be able upload and convert their videos bitrate using ffmpeg. And if users go to watch page before full conversion then "Video is being processed" message should show up.
I am using jQuery with AJAX and a watch link generated to watch online.


1) How can I find the process is still running and show "Video is being processed" message to the users ?


2) How can I stop ffmpeg process ?


3) How can I get conversion percentage (how much video is converted) from file (as multiple users are using the site so can't work on single file named output.txt) ?


-
Streaming and Playing On-the-fly Converted AAC Audio in Qt 5.12.2 Using FFmpeg/LibAV
17 novembre 2023, par ShlxI'm currently working on a Qt (5.12.2) project. I'm trying to play an audio file that is encoded as AAC but stored in an MPEG-4 container, making it unable to be played easily. The current idea is to use ffmpeg / libAV to convert the file on-the-fly when the user tries playing it. How is it possible to


- 

- Stream the file as it is being converted, and
- Open the stream handle in a QMediaPlayer, playing the file ?






I tried using ffmpeg on the command line to make an RTSP stream while converting, but couldn't get it working whatsoever. While fiddling around, I got a working RTP stream (no transcoding) using this command :


ffmpeg -re -f mp3 -i test.mp3 -acodec libmp3lame -ab 128k -ac 2 -ar 44100 -f rtp rtp://127.0.0.1:1234



Most examples I found online only address video streams. I also couldn't find a definitive answer if opening the stream would even be possible on my Qt version (not able to update).


Cheers