
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (36)
-
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Contribute to documentation
13 avril 2011Documentation is vital to the development of improved technical capabilities.
MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
To contribute, register to the project users’ mailing (...)
Sur d’autres sites (3939)
-
Add aac single audio to MPEG DASH mpd files
26 avril 2017, par AdminyI am trying to add manually to the .mpd file the following code.
<adaptationset contenttype="audio" segmentalignment="true" bitstreamswitching="true" lang="English">
<representation mimetype="audio/mp4" codecs="mp4a.40.2" audiosamplingrate="44100">
<audiochannelconfiguration schemeiduri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"></audiochannelconfiguration>
<segmenttemplate timescale="44100" media="http://localhost/audio.aac" startnumber="1">
</segmenttemplate>
</representation>
</adaptationset>But its not working, Does everything have to be segmented in .mpd files ? or can I have a single .acc file ?
-
FFMPEG - Overlay stop updating after few minutes
27 décembre 2018, par Vincent CarreteroFirst im sorry for my english :-(
I do streaming from RTSP to Facebook live (RTMP).
I overlay PNG file, on the stream left corner, with score information and time (like tv soccer match).After few minutes, the image overlay dont refresh, and i dont know why...
Image is updated by vbscript, and its correctly done.This is my code :
cmd.exe /K ffmpeg.exe ^
-f lavfi -y ^
-i anullsrc -rtsp_transport tcp ^
-i "rtsp://xxx:xxx@xxx:8080/videoMain" ^
-r 1 -loop 1 -f image2pipe -i 762141_marquage.png ^
-filter_complex "[2:v]setpts=PTS-STARTPTS[a];[1:v][a]overlay=10:10" ^
-tune zerolatency -vcodec libx264 -c:v libx264 -crf 30 -preset ultrafast -c:a aac -strict experimental ^
-f flv "rtmp://xxx"Some one can help me ? please :-)
-
matplotlib "RuntimeError : No MovieWriters available" when ffmpeg is installed
11 août 2014, par user1637894I’m using OSX Mavericks and the Enthought Canopy distribution of python. I’m trying to run any simple example script that uses
matplotlib.animation
to save an animation, but I always get the following error :Traceback (most recent call last):
File "/Users/Sam/Google Drive/Spyder workspace/MiscScripts/animation.py", line 14, in <module>
FFMpegWriter = manimation.writers['ffmpeg']
File "/Users/Sam/Library/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/matplotlib/animation.py", line 63, in __getitem__
raise RuntimeError("No MovieWriters available!")
RuntimeError: No MovieWriters available!
</module>Ffmpeg is installed on my system : I can access it by typing
ffmpeg
into a new terminal. So I’m guessing matplotlib simply doesn’t know that ffmpeg is available because it is not in the python path. So I tried typingwhich ffmpeg
into a new terminal window to find where ffmpeg was installed, then I added this string to my python path viasys.append('path_here')
, but this didn’t help.