
Recherche avancée
Autres articles (65)
-
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 (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...)
Sur d’autres sites (4965)
-
mplayer or ffmpeg to display video that is beeing pushed to the player ?
18 décembre 2020, par Sebastian HeynI am planning an application, where an outside video camera should be displayed using mplayer (or any other lightweight video player).


However, instead of connecting the mplayer to the camera server (ffmpeg or something), I want the camera to push the video to the player.


The camera will be on an unstable network, and it will be natted so I cannot access without using a VPN or ssh tunnel. Those tunnels will consume CPU power, bandwidth and connection establish time.


Ideally, the last received frame will be displayed, until the next frame is received, without closing the window.


Does anyone know a way to achieve this using existing software ? BTW : The camera will be connected to a raspberry or simillar.


-
ffmpeg-Create the video slideshow with effect ? [on hold]
1er octobre 2013, par Lily ShuklaI want to make video slide show with image using the ffmpeg.
i try the codeUsing a single image as an input
If you want to create a video out of just one image, this will do (output video duration is set to 30 seconds with -t 30) :
ffmpeg -loop 1 -i img.png -c:v libx264 -t 30 -pix_fmt yuv420p out.mp4
but sir it only showing the picture without any effect.
i want to add effect like we see in power point.
plz sie how to do it
ffmpeg-Create the video slideshow with effect ??? -
stream usb webcam via http using vlc without transcoding using mjpeg signal from webcam
10 novembre 2020, par Peter NußreinerI wanna stream my (Microsoft live) USB webcam using vlc from a raspberry.
While it works perfectely fine with transcoding my raspberry does not have enough power.


So I checked the output formats of my webcam using :


ffmpeg -f v4l2 -list_formats all -i /dev/video0



wich gives me the following output :


[video4linux2,v4l2 @ 0x559d5aee36c0] Raw : yuyv422 : YUYV 4:2:2 : 640x480 1280x720 960x544 800x448 640x360 424x240 352x288 320x240 800x600 176x144 160x120 1280x800
[video4linux2,v4l2 @ 0x559d5aee36c0] Compressed: mjpeg : Motion-JPEG : 640x480 1280x720 960x544 800x448 640x360 800x600 416x240 352x288 176x144 320x240 160x120
/dev/video0: Immediate exit requested



when running my streaming command :


cvlc v4l2:///dev/video0:chroma=h264:width=1280:height=720 --sout '#standard{access=http,mux=ts,dst=192.168.178.27:8080,name=stream,mime=video/ts}' -vvv



I get the following error :


mux_ts mux warning: rejecting stream with unsupported codec YUY2
main mux error: cannot add this stream
main decoder error: cannot create packetizer output (YUY2)



along with many other lines of information.
As far as I can interpret the error, vlc wants to use the YUY2 RAW signal of my webcam.
Is there any way I can force vlc to use the mjpg output of my camera ?


I've already tried to use 'chroma=mjpg' without success.
Transcoding is not an alternative as my raspi has by far not enough power.


I've also read about using ffmpeg for streaming, maybe someone has an alternative solution since I'm very new to the whole topic of websites and stuff


It will (or should) be used as a live webcam for a windsurfing spot.
Therefore I need a fluent video with at least 10fps to judge the situation. A delay of a minute or so is no problem.
The basic idea was to stream the video to a webserver and embed the image in a website. I've got good internet connection at the spot.


But for now I want to try it locally on my pc.