
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (49)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
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 (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (7759)
-
DirectShow RTSP SourceFilter with MPEG-4 Video Stream
20 mars 2021, par NovalisI create a simple direct show source filter using FFmpeg.I read rtp packets from RTSP source and give them to decoder. It works for h264 stream.



MyRtspSourceFilter[H264 Stream] ---> h264 Decoder --> Video Renderer




The bad news is that it does not work for MPEG-4. I can able to connect my rtsp source filter with MPEG-Decoder. I got no exception but video renderer does not show anything. Actually just show one frame then nothing [just stop]... Decoders and Renderers are 3rd party so i can not debug them.



MyRtspSourceFilter[MP4 Stream] ---> MPEG-4 Decoder --> Video Renderer




I can able to get rtp packets from MPEG-4 RTSP Source using FFmpeg sucessfully.There is no problem with it.





It seems that i have not set something(?) in my Rtsps Source
 Filter which is not necessary for H264 stream but may be important for
 MPEG-4 stream





What may cause this h264 stream and MPEG-4 stream difference in a direct show rtsp source filter ? Any ideas.



More Info :



— First i try some other rtsp source filters for MPEG-4 Stream...Although my rtsp source is same i see different subtypes in their pin connections.



— Secondly i realy get suspicious if the source is really MPEG-4 SO i check with FFmpeg...FFmpeg gives the source codec id as "CODEC_ID_MPEG4".



Update : 
[ Hack ]



I just set m_bmpInfo.biCompression = DWORD('xvid') it just worked fine...But it is static. How to dynamically get/determine this value using ffmpeg or other ways...


-
Merge the .mp4 video file with the .srt file in Hebrew language
18 octobre 2023, par ZONEXI am looking for a solution using Python or CMD with FFmpeg to merge my Hebrew language .srt file with my .mp4 file.
Thanks for everyone !.


I have tried using this command


ffmpeg -i show.mp4 -vf "subtitles=show.srt:force_style='FontName=Arial,FontSize=24,PrimaryColour=&H00FFFF00&'" -c:v libx264 -c:a aac -strict experimental -scodec mov_text mysubtitledmovie.mp4


However, I encountered the error message : 'Invalid UTF-8 in decoded subtitles.' I understand that I need to add Hebrew encoding support, but I haven't found how to do that.


it's important to me that it'll be very fast process to add the .srt Hebrew file to .mp4 file.


-
FFMPEG Stdout Line
23 janvier 2023, par ai manifestI'm just wondering why Google Colab doesn't show FFMPEG's STDOUT line, showing the frame progress, fps, duration, time elapsed, etc. Jupyter notebooks and jupyter lab shows it, so I'm not sure why colab doens't. Thanks in advance.


When running the ffmpeg command, (!ffmpeg -i input.mp4 output.mp4), there is no stdout line in google colab, but if run in jupyter notebooks, the stdout lines show. Just curious why this is.