
Recherche avancée
Autres articles (89)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (6814)
-
checkasm/Makefile : add EXTRALIBS-swresample
9 février 2018, par Muhammad Faizcheckasm/Makefile : add EXTRALIBS-swresample
Should fix https://ffmpeg.org/pipermail/ffmpeg-devel/2018-February/225058.html
Signed-off-by : Muhammad Faiz <mfcc64@gmail.com>
-
Making a video from arbitrary named files using ffmpeg
6 février 2018, par mooI have image files from a webcam, they are named in the format : 2018-02-06-16-40-05.jpg
Is it possible to make a video out of these images without having to rename them in a format similar to image%04d.jpg, etc. -
ffplay subscription to rtmp stream fails on first try
2 janvier 2018, par ehouseI have an Electron application that does some video streaming through ffmpeg. It works fine on Windows, but I am having a small problem with it on Mac. I stream the desktop with ffmpeg, and try to subscribe to the rtmp stream. I know the rtmp stream is live because I can successfully grab a frame from it.
The problem is, when I subscribe with ffplay, it does not work, the output looks like this :
2018/01/01 20:57:25:618 [web] nan : 0.000 fd= 0 aq= 0KB vq= 0KB sq= 0B f=0/0
When I subscribe again (while the previous process is still ongoing), it works :
2018/01/01 20:57:25:828 [web] 340.93 M-V: 0.001 fd= 0 aq= 0KB vq= 131KB sq= 0B f=0/0
The only difference in output to the command line is this :
Input #0, live_flv, from 'rtmp:{stream-url-here}':=0/0
2018/01/01 20:57:15:427 [web] Metadata:
2018/01/01 20:57:15:427 [web] Server : NGINX RTMP
(github.com/sergey-dryabzhinsky/nginx-rtmp-module)
2018/01/01 20:57:15:427 [web] displayWidth : 1024
2018/01/01 20:57:15:428 [web] displayHeight : 640
2018/01/01 20:57:15:429 [web] fps : 20
2018/01/01 20:57:15:429 [web] profile :
2018/01/01 20:57:15:430 [web] level :
2018/01/01 20:57:15:430 [web] Duration: 00:00:00.00, start:
316.500000, bitrate: N/A
2018/01/01 20:57:15:430 [web] Stream #0:0: Video: h264 (Constrained
Baseline), yuv420p(progressive), 1024x640, 20 fps, 20 tbr, 1k tbn, 40
tbcI am trying to figure out why it only works on the second time subscribing, and this is the difference, which I assumes signals the it successfully received the streams info, but I am trying to figure out why it only works the second time.
Thanks !!