
Recherche avancée
Autres articles (45)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (7851)
-
streaming iOS simulator screen using idb and ffmpeg [closed]
26 janvier 2024, par user12857692I'm trying to use idb to streaming iOS simulator screen with this command


idb video-stream --fps 30 --format h264 --udid XXXXXX | ffmpeg -f h264 -i pipe: -listen 1 -f mjpeg http://0.0.0.0:9000


And I use this mjpeg player to view : https://gist.github.com/codebrainz/eeeeead894e8bdff059b


However, its all black.


I've tried my other mjpeg sources, and they all display properly.


What's wrong with idb/ffmpeg ?


ffmpeg version : 6.1.1


-
FFmpeg Capture remote screen
29 août 2018, par ricardoI am trying capture a remote screen via ffmpeg and x11grab, I run in my machine this command
xpra start-desktop :20 --start-child=fluxbox
this machine have the ip
192.168.1.15
and in the remote capture I try run this
/usr/local/bin/ffmpeg -f pulse -server 192.168.1.15 -i tarjeta01.monitor -f x11grab -framerate 25 -r 25 -i 192.168.1.15:20.0 -fflags nobuffer -f rtp -c:v h264_nvenc -preset llhp -profile:v baseline -level 4 -delay 0 -b:v 1500k -threads 4 -cbr 1 -r 25 -an udp://:5008 -f rtp -vn -c:a libopus -ar 48000 -ac 2 -ab 96k -application lowdelay -compression_level 0 -frame_duration 2.5 -cutoff 20000 -vbr constrained udp://localhost:5006
I make xhost + and xhost + 192.168.1.16 in the machine where run xpra but always receive this error
[x11grab @ 0x23e4ea0] Cannot open display 192.168.1.15:20, error 1.
192.168.1.15:20: Input/output errorI try xpra, Xephyr and xfvb but always get the same error
Thanks for all best regards
-
Split screen video cliping with FFMpeg
11 avril 2014, par Justinasi have one video source with 4 different videos inside :
As you can see, i'm using VLC to view it and there is only one controlling window. If i press stop button, every 4 videos will stop and so on.
Problem is, i have to use FFMpeg and cut mini-clip from this source, so it will be playable in all 4 windows again. Clipping ordinary video works just fine with command
ffmpeg.exe -y -i $input -ss $startTime -t $length -acodec copy -vcodec copy $output 2>&1
. But when used for this one split-screen video, i get only one source clip instead of all 4 in same place.Any detailed information about this video is welcomed because i don't even know how exactly this type of video is called, as well as any information about clipping with ffmpeg that video.