
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (63)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 : (...)
Sur d’autres sites (6575)
-
Duplicate input stream into many output streams
10 juin 2017, par FarshadI want to catch my ip camera stream and distribute it into for example 10 different streams with ffmpeg ? How can i do that ? I have checked here but nothing helpful.
Is it possible or is there any better option ?
-
Anomalie #3647 : #INTRODUCTION + propre sous PHP7
28 février 2016, par Ivan Lewkowitzb b a écrit :
Je précise aussi, quand je te demandais de nous transmettre le texte de l’article qui pose problème, je parlais bien du texte source de l’article (pas de son rendu). Peux-tu nous filer ça pour qu’on tente de reproduire le bug ?
Voilà le début du texte source du dernier article en ligne (http://www.questionchine.net en tête de page, là où s’affiche l’introduction).
(Dis moi si la pièce jointe est bien accessible, j’ai pas trop l’habitude des balises redmine).
Texte_article.txtCe contenu sous Php 7.0.0 n’affiche pas l’intro.
D’après ce que je peux voir, sur la page de l’article (que j’ai finalement trouvé à l’aide d’un moteur de recherche), tu as un document inséré en début d’article, c’est bien ça ?
Oui il y a un document inséré en début d’article. Une image, par exemple :
Mais le site en ligne tourne en php 5.x, donc aucun problème. -
Python VTK, how to record a video ?
15 avril 2016, par Maksim SurovI am trying to record a video of VTK 3D animation using ffmpeg. The example I found http://www.itk.org/Wiki/VTK/Examples/Cxx/Video/FFMPEG is a bit strange for me, because it does not create a render, so it is not clear how to attach actors in this case. So, my question is how to connect
vtkRenderer
tovtkFFMPEGWriter
? I wrote a simplified exampleimport vtk
# draw a plane
plane_source = vtk.vtkPlaneSource()
plane_source.SetCenter(0, 0, 0)
plane_source.SetNormal(0, 0, 1)
plane_mapper = vtk.vtkPolyDataMapper()
plane_mapper.SetInput(plane_source.GetOutput())
plane_actor = vtk.vtkActor()
plane_actor.SetMapper(plane_mapper)
# create render
render = vtk.vtkRenderer()
renWin = vtk.vtkRenderWindow()
renWin.AddRenderer(render)
renWin.SetSize(800, 600)
renInter = vtk.vtkRenderWindowInteractor()
renInter.SetRenderWindow(renWin)
render.AddActor(plane_actor)
renWin.Render()
renInter.Initialize()
# set callback
def cb(interactor, event):
global plane_actor
plane_actor.RotateZ(0.1)
interactor.GetRenderWindow().Render()
renInter.AddObserver('TimerEvent', cb)
timerId = renInter.CreateRepeatingTimer(100);
# put something here?
writer = vtk.vtkFFMPEGWriter()
# ??? writer.SetInputConnection(...)
writer.SetFileName("test.avi")
writer.Start()
# run
renInter.Start()