
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (98)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (9564)
-
ffmpeg amix : process pcm data stream realtime
29 décembre 2020, par YouCLI am building an exe with ffmpeg libs. In this exe, I got 2 3 pcm data streams from lower level sdk, I need to mix/merge these data to an audio file on the fly. Now I am trying
amix
filter, my questions are :

- 

- How to send raw pcm data to ffmpeg
filter graph
by hand instead of frames from decoder as usual ? - One of the pcm data streams starts and ends randomly. If I set 3
source filter
s, is it going to work ?






- How to send raw pcm data to ffmpeg
-
How to do reprocessing H264 data to image/video
3 octobre 2017, par somethingunexpectedI have been working on a project which blows my mind.
First of all, I have an IP camera that streams H264 data. I am able to stream it with its RTSP url via VLC/ffmpeg/python (rtsp ://ip:port/PSIA/Streaming/channels/2 ?videoCodecType=H.264). So, there is nothing to worry about streaming.
However, on the project, camera is connected to the another system. This system gives the H264 data via ethernet to my PC, so camera is not connected directly to the PC.
The system gives the data in every 10 ms at 1000 bytes. For example, if incoming data is 800 bytes, it adds 200 null bytes.What I can do is to extract these null bytes and take the raw data via a socket. For latency, I use thread module so there is no data leakage.
What I gotta do is to turn these raw H264 data to an image sequence or a video that can be displayed via VLC, ffmpeg, Classic Media Player etc.
I preferrebly want to write my code in Python and every operation has to be in real-time. So, any help would be appreciated.
-
FFmpeg AVFrame Audio Data Modification
5 septembre 2016, par ArlindI’m trying to figure out how FFmpeg saves data in an
AVFrame
after the audio has been decoded.Basically, if I print the data in the
AVFrame->data[]
array I get a number of unsigned 8 bit integers that is the audio in raw format.From what I can understand from the FFmpeg doxygen, the format of the data is expressed in the
enum AVSampleFormat
and there are 2 main categories : interleaved and planar. In the interleaved type, the data is all kept in the first row of theAVFrame->data
array with sizeAVFrame->linesize[0]
while in the planar type each channel of the audio file is kept in a separate row of theAVFrame->data
array and the arrays have as sizeAVFrame->linesize[0]
.Is there a guide/tutorial that explains what do the numbers in the array mean for each of the formats ?