
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (29)
-
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 -
Changer son thème graphique
22 février 2011, parLe thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
Modifier le thème graphique utilisé
Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
Il suffit ensuite de se rendre dans l’espace de configuration du (...) -
Automated installation script of MediaSPIP
25 avril 2011, parTo overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
The documentation of the use of this installation script is available here.
The code of this (...)
Sur d’autres sites (6200)
-
Node fluent-ffmpeg killing process kills server - How to start and stop recorder ?
18 octobre 2024, par ScorpioI'm using fluent-ffmpeg in a node application. Recording from the screen/camera to an mp4 file. Would like a server request to start and another request to stop recording (links to a web interface - testing some tech with a view to making an Electron App later with it).



Starting is fine, but cannot figure out how to stop it.



This is the code to start (to run on MacOS) :



recordingProcessVideo = ffmpeg(`${screenID}:none`)
 .inputFormat('avfoundation')
 .native()
 .videoFilters(`crop=${width}:${height}:${x}:${y}`)
 .save(filePath);




This is what I thought would stop it from documentation and reading around the subject :



recordingProcessVideo.kill('SIGINT');




However, when I call this command, the server quits with the following ambiguous message :



code ELIFECYCLE
errno 1




Also, the video file produced will not open as if it quit before it completed. Can't seem to work it out, as from the docs and what people have written, to start and stop the recorder should be to make the process, then kill it when ready. Anyone know the correct way - been looking for ages but can't find any answers.



Using Node v10.15.2 and Ffmpeg version V92718-g092cb17983 running on MacOS 10.14.3.



Thanks for any help.


-
Android NDK : Aborting. Stop
6 mars 2019, par Huy TowerI’m trying to call
C++
method inJava
coding.I received the
Android NDK : Aborting. Stop
when defined theAndroid.mk
file as below :LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := ffmpeg
LOCAL_SRC_FILES := libs/ffmpeg.so
include $(PREBUILT_SHARED_LIBRARY)
include $(CLEAR_VARS)
LOCAL_MODULE := ffmpeg
LOCAL_SRC_FILES := ffmpeg.cpp
LOCAL_SHARED_LIBRARIES := ffmpeg
include $(BUILD_SHARED_LIBRARY)But if I defined like this, it run successfully :
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := ffmpeg
LOCAL_SRC_FILES := libs/ffmpeg.so
include $(BUILD_SHARED_LIBRARY)Questions
:1 - How to fix this error ?
2 - In
Android.mk
file, Can not calllibs/ffmpeg.so
andffmpeg.cpp
in the same time ?People who know this,
Please tell me,
Thanks,
p/s : Project structure :
-
FFMPEG - Overlay stop updating after few minutes
27 décembre 2018, par Vincent CarreteroFirst im sorry for my english :-(
I do streaming from RTSP to Facebook live (RTMP).
I overlay PNG file, on the stream left corner, with score information and time (like tv soccer match).After few minutes, the image overlay dont refresh, and i dont know why...
Image is updated by vbscript, and its correctly done.This is my code :
cmd.exe /K ffmpeg.exe ^
-f lavfi -y ^
-i anullsrc -rtsp_transport tcp ^
-i "rtsp://xxx:xxx@xxx:8080/videoMain" ^
-r 1 -loop 1 -f image2pipe -i 762141_marquage.png ^
-filter_complex "[2:v]setpts=PTS-STARTPTS[a];[1:v][a]overlay=10:10" ^
-tune zerolatency -vcodec libx264 -c:v libx264 -crf 30 -preset ultrafast -c:a aac -strict experimental ^
-f flv "rtmp://xxx"Some one can help me ? please :-)