
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (32)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Selection of projects using MediaSPIP
2 mai 2011, parThe examples below are representative elements of MediaSPIP specific uses for specific projects.
MediaSPIP farm @ Infini
The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (6933)
-
FFmpeg frame counter + resolution/bitrate/FPS box
4 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 input.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 also a resolution/bitrate box at the top of the video as shown in the image below :




Which parameters/metadata can come in hand ?


-
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