
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (102)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...)
Sur d’autres sites (12054)
-
Live stream prerecorded video to YouTube using FFMPEG with 4500 kbps bitrate
9 avril 2023, par RsanI tried various ways to make a live streaming script with a bit rate according to YouTube's recommendation of 4500 Kbps bit rate.
The code :


ffmpeg -re -stream_loop -1 -i live1.mp4 -c copy -preset veryfast -b:v 7000k -maxrate 3000k -bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 -ar 44100 -f flv -flvflags no_duration_filesize rtmp://a.rtmp.youtube.com/live2/(streamkey)


and in my current code, there is an error when live : Use a keyframe frequency of four seconds or less. Currently, keyframes are sent infrequently which can cause buffering. The current keyframe frequency is 5.0 seconds. Please note that errors in the transfer process can cause the size of the GOP (group of images) to be incorrect.


How to fix my code ?


I've tried several ways, but the bit rate is still high, and the error is in YouTube Studio


-
Is there a way to Extract frames from .ts files with Http Live Stream in iOS
12 mai 2016, par user1529412I have a current setup in iOS app that streams directly from RTSP and I use ffmpeg library in objective C to extract frames and convert them to RGB/YUV and display them consecutive RGB pics (Video like).
I have a new requirement for HTTP Live Stream (HLS) which requires .ts files and m3u8 index file. I can play the ts files with AVPlayer, but its not what I am looking for, I want to apply my custom OpenGL View like the baove RTSP, so I need access to the actual frames of the ts, because I need the finer control over the frames to apply some OpenGL manipulation. Does anyone know how I can get at the frames of the .ts in Objective-C ?
-
Best Setting for High Quality live Stream Encoding with NVENC_HEVC
23 août 2021, par AquilaCoderWe are using Quadro RTX 4000 for live stream transcoding, with default settings


ffmpeg -v warning -hwaccel_device 0 -hwaccel cuda -hwaccel_output_format cuda -c:v h264_cuvid -deint 2 -drop_second_field 1 -i udp://239.101.0.5:1234 -c:a libfdk_aac -b:a 128k -ar 48000 -c:v hevc_nvenc -b:v 4000k -g 25 -f mpegts udp://192.168.2.7:1234?pkt_size=1316



Video Resolution : 1920x1080
Driver Version : 470.42.01 CUDA Version : 11.4
OS : Ubuntu 18.04


guide us to achieve best compression with high quality.


Thanks in advance