
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (49)
-
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...) -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
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 ;
Sur d’autres sites (7878)
-
Recreate image with ffmpeg safe ?
28 février 2019, par JohnI want to use
ffmpeg
to recreate an image file that is uploaded. I know that in PHP you can useimagecreatefromjpeg
,imagecreatefrompng
andimagejpeg
etc. to recreate images. That way, if there is any hidden malware in the original images, it will ’break’ / be mangled.But I want to use this ffmpeg command to recreate image files :
ffmpeg -i in.jpg out.jpg
I have tested converting an image file that has PHP code stored in its EXIF field, and after converting it, the PHP code is no longer executed in the converted file..Also, the converted file is smaller in size : from 45.9 KB to 11 KB..
Is that a safe way ?
EDIT
Btw, I am also checking the MIME type etc, but MIME can be forged, hence recreating image files is recommended.. I want to convert files on another server where there is no PHP installed. That way I can also avoid any potential PHP memory issues. -
Overlay text in a background image not getting correct output
12 décembre 2020, par Konduri Sai AdityaWhen overlaying a text or image(test.jpg) to a background image(bg.png),output video background color is getting darker.
here input image has an alpha value .


ffmpeg -loop 1 -i bg.png -i test.jpg -y -filter_complex "[0:v][1:v] overlay=25:25,-pix_fmt yuv420p" -shortest -t 10 tesy.mp4 



Output excepted : https://i.stack.imgur.com/e5C3x.png


Output I got is
https://i.stack.imgur.com/reujS.png


If you see background color has huge differnce in the output I got


Below is the background image(bg.png) to which i am overlaying some image(test.jpg)



Use this image and overlay a test image, and let me know the difference in background color .


-
Converting image sequence to video with inconsistent frame rate
4 novembre 2022, par GeorgeI recently collected video data where the video was generated as image sequences. However, between different video of the same length, different numbers of frames were acquired, which made me think that the image sequence have varied frame rates between videos. So my question is how do I convert this image sequence back to video with accurate duration between frames. Is there a way to get that information from the date and time it was created using a code ? I know ffmpeg seems to be the tools many people use.


I am not sure where to start. I am not very familiar with coding, so already have trouble executing the correct codes.