
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (111)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
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 (14337)
-
How to get frame information from fragmented mp4
17 novembre 2020, par Duke AtistaI'm using the following command to generate fmp4 files


ffmpeg -rtsp_transport tcp -i rtsp://someuser:somepassword@somedomain:someport/Streaming/Channels/101 -acodec copy -vcodec copy -hls_segment_type fmp4 -hls_time 2 -hls_list_size 10 -hls_flags delete_segments+append_list+split_by_time -hls_playlist_type event test.m3u8


I need to know the exact duration and frame count of each fragment. Unfortunately -vstats appears to be ignored.


I tried to probe one of the segments using


ffprobe -show_frames ./test0.m4s


But I get


[mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] could not find corresponding track id 1 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] could not find corresponding trex (id 1) [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] could not find corresponding track id 0 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] trun track id unknown, no tfhd was found [mov,mp4,m4a,3gp,3g2,mj2 @ 0x7fb68e80b000] error reading header ./test0.m4s: Invalid data found when processing input


I'm assuming that is because the initialisation segment has not been loaded but I can't find the option to do so.


If I try probing the initialisation segment with


ffprobe -show_frames ./init.mp4


I get no frame information and the error


Could not find codec parameters for stream 0 (Video: h264 (avc1 / 0x31637661), none, 2560x1440): unspecified pixel format Consider increasing the value for the 'analyzeduration' and 'probesize' options


Would appreciate any help.


-
Segmentation Analytics : How to Leverage It on Your Site
27 octobre 2023, par Erin — Analytics Tips -
Use animation.save with ffmpeg writer within a Python package
16 janvier 2021, par Logan YangI'm writing a Python package that produces some animated plots. I can successfully use
matplotlib.animation.save
to save gifs as such :

anim.save(f"./{file}", writer="imagemagick", fps=15)



But if I try to save it to
mp4
like this, it doesn't work because I guess it can't find ffmpeg on my system (MacOS)

anim.save(f"./{file}",writer=FFMpegWriter(fps=15))



Error :


MovieWriter stderr:
dyld: Library not loaded: /usr/local/opt/x265/lib/libx265.165.dylib
 Referenced from: /usr/local/bin/ffmpeg
 Reason: image not found
...



My intention is to make it platform agnostic, since it's a Python package I'm writing, I would like it to be portable so that the user can use it out-of-the-box with
pip install
. Since gif is already working withimagemagick
, I'm not sure how to make it work for ffmpeg writer.

I tried pip install ffmpeg in my project but that didn't work. Any suggestion is appreciated !