
Recherche avancée
Autres articles (64)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (9081)
-
Why does iftop show no bandwidth from a multicast IP but tcpdump does ? ffmpeg also cannot capture from the multicast
22 mars 2018, par LennyI ran into a puzzling problem when trying to receive a multicast IP (of a video from 239.193.140.11:1234).
When
$tcpdump dst 239.193.140.11 -w capturedData.pcap
, the packets are captured correctly.eg, 11:05:25.357138 IP 192.168.34.34.46192 > 239.193.140.11.1234 : UDP, length 1328
This means that my machine is receiving the multicast IP packets.
However, when
$iftop -i any
is run, iftop doesn’t show any bandwidth from 239.193.140.11. Furthermore, when I try to capture the multicast packets with ffmpeg :$ffmpeg -i udp://239.193.140.11:1234?localaddr=192.168.34.34
, no packets are captured.Why is there a discrepancy between what tcpdump and iftop shows, and how to resolve it so that ffmpeg can capture correctly ?
-
Create a slide show from images in a folder [on hold]
26 juillet 2017, par randommmanSo i have a folder with images like so :
1.png
2.png
3.png
.. etcI am trying to generate a slideshow video from the videos, i have the following code :
string ffmpegPath = "ffmpeg.exe";
string ffmpegParams = "-y - r " + mimtime + " -i " + Images + "- c:v libx264 -r 15 - pix_fmt yuv420p -vf fps = 90 " + Video;
Process ffmpeg = new Process();
ffmpeg.StartInfo.FileName = "cmd.exe";
ffmpeg.StartInfo.Arguments = "/k " + ffmpegPath + " " + ffmpegParams;
ffmpeg.Start();But this is giving me permision denied, because I think I need to add the individual images. How can I get the individuall images to generate a video ?
-
I using ffmpeg to live stream a hd video to rtmp server of facebook but when see it only show 360 quality
29 octobre 2018, par jack maThis is my ffmpeg code :
'ffmpeg -i "{}" ' \
'-vf "zoompan=z=\'min(max(zoom,pzoom)+0.0015,2)\':d=1:x=\'iw/2-(iw/zoom/2)\':y=\'ih/2-(ih/zoom/2)\'" ' \
'-vcodec libx264 ' \
'-preset veryfast ' \
'-maxrate 2932k ' \
'-bufsize 2500k ' \
'-vf "format=yuv420p" ' \
'-g 60 ' \
'-acodec libmp3lame ' \
'-b:a 198k ' \
'-ar 44100 ' \
'-s 1280x720 ' \
'-f flv "{}"I have wasted 2 day for this problem. Thanks for reading !