
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 (58)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (10176)
-
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
-
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 ?
-
How to convert cmd pipe to powershell in context of binary data (ffmpeg and streamlink)
20 juin, par Filip KrawczykI'd like to convert a pipe of video stream between
streamlink
andffmpeg
from cmd to Powershell. But from what I searched powershell only supports piping objects.

Is there any way to reproduce this in Powershell without using
Start-Process -FilePath "cmd" -ArgumentList [...]
? I'd prefer not to use it because I need access to the exit code.

streamlink $stream_url best -O | ffmpeg -i pipe: "output_file.mp4"



note : the line above had some args removed for better clarity