
Recherche avancée
Médias (16)
-
#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
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (107)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (11068)
-
Joining a video stream in ffmpeg by passing an SDP file as inline data
8 novembre 2019, par user1447903Afternoon.
Using ffmpeg I can open an SDP file using the syntax :ffmpeg -protocol_whitelist file -i file.sdp
Does anyone know if it is possible to join the stream described in the sdp file without first writing the contents to a file ?
So, for example, if the SDP file contents is :
v=0
m=video 1234 RTP/AVP 96
c=IN IP4 232.1.2.3
a=rtpmap:96 MP4V-ES/90000
a=source-filter: incl IN IP4 232.1.2.3 1.2.3.4Can I use the data input type described here :
https://ffmpeg.org/ffmpeg-protocols.html#dataTo join the same stream doing something like :
ffmpeg -protocol_whitelist data -i "data:application/sdp;charset=UTF-8,v=0 \r\n...."
The answer /seems/ to be no, but I thought I’d ask "the internet" in case I am simply doing something wrong...
-
How to decode Byte string from continous video frames in python
15 juillet 2021, par fresch mani am trying to get PNG from a video stream. first i connect the server during socket, and i recieve presistent byte string. however when i use Pickel ,i get a Error,that is UnpicklingError : invalid load key, '\x10.


i surpose that ,if i should first do someting to the bytestring before i use pickel.or i should use another methode


i have already search in the internet, but all the answers are , open locally video and so ..but my byte string are acctully presistent RAW video frames(yuv420) during tcp transport.


`import socket,os,struct,numpy,pickle
TCP_IP = '192.168.0.90'
TCP_PORT = 5000
BUFFER_SIZE =1024
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect((TCP_IP, TCP_PORT))
while True :
 data = s.recv(BUFFER_SIZE)
 data = pickle.loads(data) `



thank you


-
Stream list of videos with ffmpeg and live555
9 juin 2015, par f3r83I’m developing a C++ application that streams a list of urls every n seconds in a loop. To do this, I use ffmpeg and live555 libs. I use VS2010 as IDE too.
I stop the video that is playing and play the next one in the list every n seconds and this works ok. But I have a serious problem, there are some resource leaks that increment the Handle Count every time I play a video.
Debugging my application and searching on the Internet I find that there are some problems in ffmpeg : leak in avcodec_open2 and some problems with sockets in live555 under Windows : live55 problem. I use some tools as Intel Inspector to find problems too.
Can anybody gives me some help ?