
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (70)
-
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 (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (11165)
-
Using FFmpeg AutoGen save to bitmap works on Windows but not on Linux
5 décembre 2024, par ChrisI'm using FFmpeg.AutoGen to decrypt video and save the frames as bitmaps. Code is using dotnet core and I'd like to get it working for both Windows and Linux.


The code is similar to the example provided : https://github.com/Ruslan-B/FFmpeg.AutoGen/blob/db9bcd4b9dfad5d117ffd71fe1a2d073e96a3520/FFmpeg.AutoGen.Example/Program.cs


AVFrame convertedFrame = this.converter.Convert(frame);
Bitmap image = new Bitmap(convertedFrame.width, convertedFrame.height, convertedFrame.linesize[0], PixelFormat.Format24bppRgb, (IntPtr)convertedFrame.data[0]);



When saving the image using :


image.Save($"returned-image-{DateTime.Now.Ticks}.png", ImageFormat.Bmp);



The image looks fine on Windows, but is corrupted in Linux.


-
Save Gstreamer stream at Windows side [closed]
18 février 2013, par user1336117I am streaming video from webcam from linux via gstreamer as below :
gst-launch -v v4l2src device=/dev/video0 ! videorate ! video/x-raw-yuv, width=320, height=240, framerate=5/1 ! videobalance saturation=0.0 ! jpegenc ! multipartmux ! tcpserversink host=192.168.10.24 port=5000
I can see the stream via VLC
tcp://192.168.10.67:5000
As the next step I want to save it as a video file but I could not succeeded.
I tried to setup gstreamer to windows but it did not worked.
I tried to save the stream by using ffmpeg on windows side but it did not worked.ffmpeg -i tcp://192.168.10.67:5000 -map 0 deneme.flv
What should I do to be able to save the stream on windows side ?
-
How can I use ffmpeg to save only the last 60 secs recorded ?
14 septembre 2021, par Marc KhouryI'm trying to figure out a way to use ffmpeg command to save only the last 60 seconds recorded.
The way I'm doing it now is using a thread to record 60 seconds videos, and then merge the last two videos and cut the last 60 seconds (using the -t command), the method I'm trying to achieve should not save multiple videos and then merge and cut.


Below the command I'm using :


ffmpeg -sseof 60 -i "\PATH\TO\VIDEO" -c copy "\PATH\TO\OUTPUT"