
Recherche avancée
Autres articles (102)
-
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 ;
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (11863)
-
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 !
-
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 ?
-
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 ?