
Recherche avancée
Autres articles (75)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (9117)
-
How to properly parse the H.265 RTSP stream from the Bosch DINION IP 3000iIR (CPP7.3) camera
5 août 2024, par Pirlo ZhangDescription :


I am trying to parse the H.265 RTSP stream from two Bosch cameras :


DINION IP 3000iIR (CPP7.3), commercial model NBE-3502-AL
DINION IP 4000i IR (CPP7.3), commercial model NBE-4502-AL
These cameras are configured in the BVMS management software to stream via RTSP on port 554 with H.265 video encoding.


Despite extensive testing, I am unable to properly parse the stream using :


VLC software
FFmpeg software
Custom programs


None of these methods seem to work. The stream does not parse correctly or is not displayed at all.


We have tried various stream URLs including :


rtsp ://user:password@10.177.100.xxx:554/h265/ch1/main/av_stream
rtsp ://user:password@10.177.100.xxx:554/h264/ch1/main/av_stream
rtsp ://user:password@10.177.100.xxx:554/h265/ch1/sub/av_stream
rtsp ://user:password@10.177.100.xxx:554/h264/ch1/sub/av_stream


Additionally, when testing other models with BVMS configured to use H.264, we can successfully retrieve the video stream.


Has anyone experienced similar issues or have any insights on how to resolve this ? Any help would be greatly appreciated.


-
Handling non continuous input dvb_subtitles in mpegts stream using FFmpeg [closed]
29 août 2023, par srinivasa prakashI have an input feed that contains video, multiple audio, and dvb_subtitles streams. I am transcoding the audio and video and copying the dvb_subtitles where subtitles are not coming continuously(for example during commercial breaks). But as per the FFmpeg documentation max_interleave_delta default value will be 10sec so the other streams will be buffered without writing into the output file.


FFmpeg command


ffmpeg -y -v debug -fix_sub_duration -i -f mpegts -vcodec libx264 -scodec copy -s 1920x1080 -b:v 3M -r 25/1 -acodec libfdk_aac -b:a 128000 -ar 48000 -sc_threshold 0 -profile:v main -level 4.0 -preset fast -x264opts nal-hrd=cbr -g 50 -maxrate 3M -minrate 3M -bufsize 6M -muxrate 4.5M -pcr_period 20 -pat_period 0.1 -map 0:v -map 0:a -map 0:s -max_muxing_queue_size 9999 



Below are my questions :


- 

- Can we able to flush the audio and video packets without buffering ?
tried -fflags +flush_packets and -flush_packets 1 but failed to achive
- Will reducing the max_interleave_delta to 3sec or lesser sec causes any issues(like PES drops, sync issues etc)






I truly appreciate any suggestions, or corrections you can offer to help me overcome these challenges.


-
Constant bitrate(CBR) with mpegts stream in FFMpeg
29 août 2023, par srinivasa prakashI have an input feed that contains video, multiple audio, and dvb_subtitles streams. I am transcoding the audio and video and copying the dvb_subtitles where subtitles are not coming continuously(for example in commercial breaks) but in FFmpeg will be waiting for at least one packet from each stream should come till then it won't write into the output file. Is there a way to write the audio and video packets to output file without waiting for subtitle streams ?


FFmpeg command


ffmpeg -y -v debug -fix_sub_duration -i -f mpegts -vcodec libx264 -scodec copy -s 1920x1080 -b:v 3M -r 25/1 -acodec libfdk_aac -b:a 128000 -ar 48000 -sc_threshold 0 -profile:v main -level 4.0 -preset fast -x264opts nal-hrd=cbr -g 50 -maxrate 3M -minrate 3M -bufsize 6M -muxrate 4.5M -pcr_period 20 -pat_period 0.1 -map 0:v -map 0:a -map 0:s -max_muxing_queue_size 9999