
Recherche avancée
Autres articles (104)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (11972)
-
HEVC : Fetching the input width and height from input bin stream
3 septembre 2014, par ZaxI have created an elementary bin stream using
HM-12.0
reference code. So the out put is an HEVC encoded bin stream (say input.bin).I have a task which involves reading the header of this elementary stream. That is i need to fetch information such a the stream width, height etc. from the
input.bin
file.After seeing a lots of streams, i can conclude that all these bin streams starts from the sequence :
00 00 00 01
So whenever i see this sequence in any bin stream, i can say that this stream has to be decoded by HEVC decoder.
Further if i want to fetch the width, height, fps etc. from the input.bin (like ff_raw_video_read_header function in ffmpeg), that are the steps need to be performed to fetch this information ?
I have gone through the parsing section of the HEVC draft, but its very complicated for my level in video domain. Can anyone suggest a simple way to fetch the required information from the encoded bin file ?
Any suggestions will be really helpful to me. Thanks in advance.
-
HEVC : Fetching the input width and height from input bin stream
1er juillet 2022, par ZaxI have created an elementary bin stream using
HM-12.0
reference code. So the out put is an HEVC encoded bin stream (say input.bin).


I have a task which involves reading the header of this elementary stream. That is i need to fetch information such a the stream width, height etc. from the
input.bin
file.


After seeing a lots of streams, i can conclude that all these bin streams starts from the sequence :



00 00 00 01




So whenever i see this sequence in any bin stream, i can say that this stream has to be decoded by HEVC decoder.



Further if i want to fetch the width, height, fps etc. from the input.bin (like ff_raw_video_read_header function in ffmpeg), that are the steps need to be performed to fetch this information ?



I have gone through the parsing section of the HEVC draft, but its very complicated for my level in video domain. Can anyone suggest a simple way to fetch the required information from the encoded bin file ?



Any suggestions will be really helpful to me. Thanks in advance.


-
FFMPEG support for WebVTT subtitle inline cues
28 janvier 2024, par ColeI am trying to "soft" embed webvtt subtitles into my video using FFMPEG. I need to be able to place to the subtitles at a specific location within the video as well.


I have created a webvtt file that goes along with my video however ; when I pass this through FFMPEG and then try to play the video in VLC media player, the positioning seems to be ignored.


When I play the original video in VLC and then load the same webvtt subtitles file, the positioning is correct ?


Does FFMPEG support the webvtt cues ? It is very possible that I am not passing the correct flags to FFMPEG.


VTT EXAMPLE FILE (i.e. subtitle.vtt) :


WEBVTT

00:00:00.000 --> 00:00:03.000 line:-1 align:right
TESTING 1

00:00:04.000 --> 00:00:08.000 line:-1 align:right
TESTING 2



FFMPEG CLI :


ffmpeg -y -i video.mp4 -i subtitle.vtt -c copy -c:s mov_text vttout.mp4



Test Cases :


- 

- Playing MP4 video in VLC and manually loading the webvtt subtitles -> position is correct.
- Passing MP4 video through FFMPEG to soft embed the subtitles in container and then playing in VLC -> subtitles are present but position is ignored.