
Recherche avancée
Autres articles (75)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6793)
-
Convert MP3 file to play on multiple browsers [on hold]
3 mars 2015, par AshleyWIs there a way I can convert MP4 files to formats like webm and mov without the use of ffmpeg so I can get videos to play on multiple browsers ?
EDIT
What I want to do is convert .mp4 files to mov, webm etc so they can be viewed all multiple borwsers, I am avoiding ffmpeg as from what Ive been told is it uses a lot of resources so its not ideal for normal shared hosting and more ideal for private servers.
-
ffmpeg converted mp4 files won't play on videojs
11 février 2018, par RickyI am trying to convert an hls source to mp4 but the ouputted file won’t play on any internet video players. Currently I am using videojs
here is how I am converting it.
ffmpeg -re -i "https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8" -c:v libx264 -c:a copy -movflags +faststart ./public/videos/cut-videos/knife/parlet.mp4
the video player is outputting this :
video.js:498 VIDEOJS : ERROR : (CODE:4 MEDIA_ERR_SRC_NOT_SUPPORTED) The media could not be loaded, either because the server or network failed or because the format is not supported.
-
How to play a video inside a UIView with ffmpeg/sdl
25 février 2015, par jAckOdEI’m trying to make a video player that can play various video format with ffmpeg and sdl2, and I need to display video frames inside a UIView. After looking into SDL api and its samples i couldnt find a way to do it. SDL use
SDL_Renderer
to render image in to aSDL_Window
, which holds a reference to aUIWindow
(the main UIWindow of the app), not a particularUIView
.Any suggestion ?