
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (111)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (12817)
-
recive klv data from a ffmpeg multicast
5 avril 2019, par diegoI am trying to get the klv data from a .mpeg.
I tried this command and it works perfectly :
ffmpeg -i video.mpg -map data-re -codec copy -f data data.klv
(This first command has "data-re" which just works on linux, but it is the only way I found to get the .klv I need)
Now I would like to open two CMD and transfer it by multicast, how could I do this ? i tried many comands like next ones, but I do not get the same .klv
sender :
ffmpeg -i video.mpeg -c copy -f mpegts udp://239.1.1.1:49410
receiver :
ffmpeg -i udp://239.1.1.1:49410 -map 0 -codec copy -f data data.klv
I am new with ffmpeg and I do not know exactly what I need to change to get exactly whay I get in the first command.
Thanks
-
Write silence audio data into file ffmpeg C++
14 août 2015, par Kaidul IslamI want to write silence/zeroed audio sampled data into
mov
media container file inside audio data. My audio data is G711 linear PCM-mulaw encoded data with one channel. Currently my code looks like :AVFrame* pSilentData = av_frame_alloc();
memset(&pSilentData->data[0], 0, iDataSize);
pkt.data = (uint8_t*) pSilentData;
pkt.size = iDataSize;
// ...
av_freep(&pSilentData->data[0]);
av_frame_free(&pSilentData);But this sounds noise like dot dot instead of silence. What’s the problem ?
-
recive klv data from a ffmpeg mulsticast
5 avril 2019, par diegoI am trying to get the klv data from a .mpeg.
I tried this command and it works perfectly :
ffmpeg -i video.mpg -map data-re -codec copy -f data data.klv
Now I would like to open two CMD and transfer it by multicast, how could I do this ? i tried many comands like next ones, but I do not get the same .klv
sender :
ffmpeg -i video.mpeg -c copy -f mpegts udp://239.1.1.1:49410
receiver :
ffmpeg -i udp://239.1.1.1:49410 -map 0 -codec copy -f data data.klv
I am new with ffmpeg and I do not know exactly what I need to change to get exactly whay I get in the first command.
Thanks