
Recherche avancée
Autres articles (108)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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" (...)
Sur d’autres sites (11505)
-
Adding Gapless Playback information to AAC
13 juillet 2018, par StaticBRim currently trying to develop an Video / Audio encoding pipline.
My goal is it to encode mp4 files containing an h264 video track and an AAC audio Track. These files should be played one after another without any gaps in between.Currently im converting the videos with ffmpeg.
Unfortunately my input files are missing the gapless playback metadata, which will be needed for gapless playback of the AAC track.Infact im looking for a way to add the
iTunSMPB
udta
comment, as it is needed by the Exoplayer. (See Parser for Details : GaplessInfoHolder.java )I could not find a way to add this via ffmpeg ( ffmpeg AAC encoder doc), did i maybe missed something ?
Even Wikipedia only lists two converters that should be able to do that : Nero Digital and Itunes. But this infomation could be outdated.
Do anyone of you know a java library or (linux) command that can add this metadata to an mp4 file ?
I hope some of you might be able to help me.
Thank you. -
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() -
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.