
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (32)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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 (...)
Sur d’autres sites (2249)
-
FFMpeg is writing a matplotlib animation with diminishing quality
3 mars 2017, par Bryan StaffordI am trying to create a bunch of animations that follow the paths National Hockey League teams travel during the current season. Currently, my animation looks like this.
As you can see, the animation begins decently sharp but within 2 seconds the quality bottoms out and everything is grainy.
The relevant code is this :
ani = animation.FuncAnimation(fig, update, frames=len(all_x + 20),
interval=75, repeat=False)
filepath = map_team + '.mp4'
ani.save(filepath, writer='ffmpeg', fps=30)
plt.tight_layout()
plt.show()I have chosen FFMpeg as my writer because I hope to put about 30 graphics online and the MP4 format keeps each file around 1.5MB. If there’s a way to keep the graphics sharp, with low file sizes, and able to be uploaded onto Imgur, I would love to do that with my project.
Thanks.
-
basic video trimmer&saver html5, js, ffmpeg
20 janvier 2016, par Alessandra BandraburI need to create a basic video cutter/saver for HTML5 (JS and ffmpeg allowed). The user should be able to set his own start time and end time with a ranger. After he sets the start and end time, the user has the possibility to save the new video pressing a save button. I didn’t find any plugin that could help me with it and I don’t know exactly from where to start.
I found this website. So the ideea is to create this video cutter but much more simpler : only with play button, set end&start time and cut/save button.
-
How to stream detect.py script in another device using rtsp in yolov5 ?
28 février 2023, par BobbyI want to stream the detect.py script yolov5 in another device using rtsp (ffmpeg)
for example, when i execute detect.py in cmd using webcam as an input then the live viewing also can stream in another device.


python detect.py --source 0 --weights yolov5s.pt --img-size 640 --conf 0.4 --save-txt --exist-ok | ffmpeg -f rawvideo -pix_fmt bgr24 -s 640x480 -i - -vcodec libx264 -pix_fmt yuv420p -preset ultrafast -f rtsp -rtsp_transport tcp rtsp://192.168.1.3:8554/



The above is the format i follow. However, I try to test it in online rstp viewer and vlc using the ip address and port but it shows the source is offline


Is it possible to stream yolov5 detect.py script in another device using ffmpeg ?