
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 (32)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Les images
15 mai 2013
Sur d’autres sites (3316)
-
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() -
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.