
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 (80)
-
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 (...) -
Librairies et logiciels spécifiques aux médias
10 décembre 2010, parPour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (6007)
-
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