
Recherche avancée
Autres articles (82)
-
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation"
Sur d’autres sites (8480)
-
When I use the hevc_videotoolbox encoder in ffmpeg it always prompts me the same error
18 février 2023, par 张益铭when i use


ffmpeg -i BabyShark.mp4 -c:v hevc_videotoolbox -b:v 6000k BabyShark1.mp4



it always returns an error like




[hevc_videotoolbox @ 0x7fec79206e00] Error encoding frame : -12905
[hevc_videotoolbox @ 0x7fec79206e00] popping : -542398533 Error
initializing output stream 0:0 — Error while opening encoder for
output stream #0:0 - maybe incorrect parameters such as bit_rate,
rate, width or height [aac @ 0x7fec79208a80] Qavg : 13693.864 [aac @
0x7fec79208a80] 2 frames left in the queue on closing Conversion
failed !




but


ffmpeg -i BabyShark1.mp4 -c:v h264_videotoolbox -b:v 6000k BabyShark2.mp4



works fine.


Other tutorials say that the above error is a problem of out-of-sync audio and video
But I changed a lot of videos, the error still appears, even the videos I recorded myself.
How can i fix it.


My computer model is MacBook Pro 2019
I want to use GPU to convert video to H265 encoding


Same problem with a computer using another M1 chip With GPU


-
Installed but not able to config FFMPEG
30 juillet 2016, par user3506So I’m using Windows 10, android-ndk-r12b and have installed FFMPEG 3.1.1 on my computer.
I’ve checked that the installation has been successful with my command line (command prompt).I try to use FFMPEG with Android so I’m following this tutorial :
http://www.roman10.net/2013/08/18/how-to-build-ffmpeg-with-ndk-r9/In this tutorial they are opening ffmpeg-2.0.1/configure file with a text editor.
I can’t find the equivalent in my FFMPEG folder. Have I missed something ?
Is it because I haven’t any editor than Atom installed on my computer ?
-
How two receive two video streams and output as a single video stream, using ffmpeg and in multicast ? [closed]
10 décembre 2024, par ShodanI am trying to stream two UDP video stream to LAN multicast


Have one computer receive these multicast streams,


combine them side by side and re-transmit them as a single stream


For testing purposes I stream two test files as follows


ffmpeg -re -i testfile1.mp4 -c copy -f mpegts udp://239.0.0.1:9991
ffmpeg -re -i testfile2.mp4 -c copy -f mpegts udp://239.0.0.1:9992



On another computer, I can watch either of these stream while they are outputting using this test command


ffplay -hide_banner -fflags nobuffer -flags low_delay -probesize 32 -analyzeduration 0 -max_delay 0 "udp://239.0.0.1:9991"
ffplay -hide_banner -fflags nobuffer -flags low_delay -probesize 32 -analyzeduration 0 -max_delay 0 "udp://239.0.0.1:9992"



Both video play back on the second computer while streaming


I also run wireshack and tcpdump on several hosts on the network, all can see the multicast packets on 239.0.0.1:9991 and 239.0.0.1:9992


Now I try the "receive, combine, re-transmit" command as follows


ffmpeg -i "udp://239.0.0.1:9991" -i "udp://239.0.0.1:9992" -filter_complex "[0:v:0][1:v:0]hstack=inputs=2" -c:v libx264 -preset ultrafast -f mpegts "udp://239.0.0.1:9990"



Here is a video screenshot of this process in action




On all of the hosts, no packets to UDP port 239.0.0.1:9990 are never received


Is there something wrong with this method ?