
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 (82)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (...) -
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 (...)
Sur d’autres sites (12061)
-
RTSP connection using FFmpeg in C++ [on hold]
21 septembre 2017, par chonaI am a student of FFmpeg.
I ask here, because I am trying to do an RTSP connection using FFmpeg.
At the moment I have thought that I need two classes, one on the client side and another on the server side.
I have understood that the client side have to ask to the server side for the connection, and then it’s when the RTSP protocol starts. But I don’t know how could I program it.
The objective is that the protocol creates the connection and then the server starts streaming video, all programmed in C/C++.
-
Evolution #2173 : Date de création / publication
20 juillet 2017, par nico d_Non, date_publication c’est le "date" actuel (même si c’est un mot mysql réservé, c’est une norme / habitude), on y touche pas.
Et on a déjà la date de mise à jour ("maj" par habitude) en DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP.
Ça marche très bien, on ajoute juste date_creation.Et non, les jointures c’est pas la joie dans les squelettes, on sait jamais trop comment ça marche.
Les champs de date de création (et de mise à jour) doivent être directement dans les tables des enregistrements.
En plus, on peut vouloir savoir aussi quand un spip_documents_liens (au hasard) a été créé.
C’est comme ça que fonctionnent les behaviors des ORM, c’est le plus simple et le plus logique.Ne passons pas à côté des choses simples ^^
-
How to streaming audio with ffmpeg and container of my own choosing ? [closed]
2 octobre 2024, par xchg.caI'm streaming an ac3 audio via rtsp using ffmpeg like this :


> ffmpeg -re -f ac3 -i sample4.ac3 -ar 8000 -f mulaw -f rtsp rtsp://10.22.22.11:8554/audiostream



In the RTSP protocol exchange it DESCRIBEd like this :


> Session Description Protocol
> Session Description Protocol Version (v): 0
> Owner/Creator, Session Id (o): - 0 0 IN IP4 127.0.0.1
> Session Name (s): No Name
> Connection Information (c): IN IP4 0.0.0.0
> Time Description, active time (t): 0 0
> Media Description, name and address (m): audio 0 RTP/AVP 96
> Media Attribute (a): control:rtsp://10.22.22.11:8554/audiostream/trackID=0
> Media Attribute (a): rtpmap:96 mpeg4-generic/8000/2
> Media Attribute (a): fmtp:96 config=1590; indexdeltalength=3; indexlength=3; mode=AAC-hbr; profile-level-id=1; sizelength=13;
> streamtype=5



I wondering if I can specify specific container in ffmpeg command line while keeping media format the same. For example I want MPEG-TS container instead of mpeg4. Looking through the ffmpeg docs did not really helped me.