
Recherche avancée
Médias (1)
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (93)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (12009)
-
FFmpeg FPS counter + resolution/bitrate box
3 janvier 2024, par NoyaZ_I was trying to use
drawtext
FFmpeg filter to insert a frame counter at the bottom of my video by using this command :

ffmpeg -i original.mp4 -vf "drawtext=fontfile=C\\:/Windows/fonts/consola.ttf: text='Frame\\: %{frame_num}': start_number=1: x=(w-tw)/2: y=h-(2\*lh): fontcolor=black: fontsize=50: box=1: boxcolor=white: boxborderw=5" -c:a copy output.mp4


So far all works fine. I was wondering how could I insert a resolution/bitrate box at the top of the video as shown in the image below :




Which parameters/metadata can come in hand ?


-
Why isnt the dpi argument increasing resolution in matplotlib ?
18 décembre 2023, par BananaBustersIve been making little videos of the Lorenz attractor recently by plotting various steps in the Lorenz attractor trace in python, saving the plots as images then combining the images into a video. By default, a saved plot in python doesnt really have good resolution so I have been trying to boost the resolution by using the 'dpi=' argument in plt.savefig, but recently the resolution hasnt been increasing and has been staying the default value for some videos, but for others it comes out crisp and clear. Can anyone tell me where im going wrong ? Here is the code im using along with a youtube link showing the low resolution even after using a high dpi argument. And no, its not just youtube compressing the video, it looked like that before uploading as well.


Youtube video showing problem : https://www.youtube.com/watch?v=0TpxeMxYs5A


Code :


# lorenzAttractorTrace() takes in the amount of frames you want to video to be along with the system paramters s, r and b. Default value is just a known value that gives a known result to use as sanity checks
# Will save images to target directory where you will then have to run ffmpeg through the command line to use. Ffmpeg comand is given in the next line
# ffmpeg -start_number 0 -framerate 60 -i graph%01d.png video.webm

def lorenzAttractorTrace(frames, s=10, r=28, b=2.667, clean=False, rotation=False):
 #Empty the target directory
 clearDirectory()

 #Calculate the array of points according to the lorenz system
 #Do this outside the main loop so that we only calculate it once rather than a bazillion times and annihilate memory
 dt = 0.01
 numSteps = frames

 xyzs = np.empty((numSteps+1, 3)) # Need one more for the initial values
 xyzs[0] = (0., 1., 1.05) # Set initial values
 for i in range(numSteps):
 xyzs[i + 1] = xyzs[i] + lorenz(xyzs[i],s,r,b) * dt

 # Checking if the attractor is clean or not to determine what the first frame should look like 
 if clean == True:
 #plot the first frame outside of the main loop, same idea as initial conditions just with a frame
 ax = plt.figure().add_subplot(projection='3d')
 ax.plot(*xyzs[0].T, lw=0.5)
 ax.set_xlabel("X Axis")
 ax.set_ylabel("Y Axis")
 ax.set_zlabel("Z Axis")
 ax.grid(None)
 ax.axis('off')
 plt.savefig('./Images for simulation/graph'+str(0)+'.png')
 plt.close('all')
 else:
 #plot the first frame outside of the main loop, same idea as initial conditions just with a frame
 ax = plt.figure().add_subplot(projection='3d')
 ax.plot(*xyzs[0].T, lw=0.5)
 ax.set_xlabel("X Axis")
 ax.set_ylabel("Y Axis")
 ax.set_zlabel("Z Axis")
 ax.set_title("Lorenz Attractor")
 plt.savefig('./Images for simulation/graph'+str(0)+'.png')
 plt.close('all')
 
 #Non-rotation video
 if rotation == False:
 #Initialize frame to 1 so that our indexing for xyzs in the main loop prints from 0-frame. If frame was 0 then we would be plotting xysz from xyzs[0] ot xyzs[0] which we cant do. We need atleast xyzs[0] to xyzs[1]
 frame = 1
 while frame < numSteps:
 ax = plt.figure().add_subplot(projection='3d')
 ax.plot(*xyzs[:frame].T, lw=0.5) #Recall this [:frame] notion means we plot the array from xyzs[0] to xyzs[frame]
 ax.set_xlabel("X Axis")
 ax.set_ylabel("Y Axis")
 ax.set_zlabel("Z Axis")
 plt.xlim((-25,25))
 plt.ylim((-30,35))
 ax.set_zlim(0,60)
 if clean == True:
 ax.grid(None)
 ax.axis('off')
 else:
 ax.set_title("Lorenz Attractor")
 pass
 plt.savefig('./Images for simulation/graph'+str(frame)+'.png', dpi=300) # dpi argument increases resolution
 plt.close('all')
 frame = frame + 1
 #Rotation video, add in the ax.view_init() function which takes in spherical coordinate
 else:
 #Initialize frame to 1 so that our indexing for xyzs in the main loop prints from 0-frame. If frame was 0 then we would be plotting xysz from xyzs[0] ot xyzs[0] which we cant do. We need atleast xyzs[0] to xyzs[1]
 frame = 1
 angle = 0
 while frame < numSteps:
 ax = plt.figure().add_subplot(projection='3d')
 ax.plot(*xyzs[:frame].T, lw=0.5) #Recall this [:frame] notion means we plot the array from xyzs[0] to xyzs[frame]
 ax.set_xlabel("X Axis")
 ax.set_ylabel("Y Axis")
 ax.set_zlabel("Z Axis")
 plt.xlim((-25,25))
 plt.ylim((-30,35))
 ax.set_zlim(0,60)
 ax.view_init(30,angle)
 if clean == True:
 ax.grid(None)
 ax.axis('off')
 else:
 ax.set_title("Lorenz Attractor")
 pass
 plt.savefig('./Images for simulation/graph'+str(frame)+'.png', dpi=300) # dpi argument increases resolution
 plt.close('all')
 frame = frame + 1
 angle = angle + 1



-
Revision 29944 : On peut comptabiliser les pages du privé
17 juillet 2009, par kent1@… — LogOn peut comptabiliser les pages du privé