
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (53)
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (9922)
-
FFmpeg Error Checking : Broken or missing AVI Index
17 avril 2017, par JakeI have three example videos,
good.avi
,damaged1.avi
, anddamaged2.avi
. The first will play in VLC, but the second two both error with the same "Broken or missing AVI Index" message.I have thousands of these videos which I need to process in MATLAB, so I’m trying to error check using FFmpeg like this :
ffmpeg -v error -i vidname.avi -f null - 2>&1
Now here’s the part I don’t understand :
Ongood.avi
it completes with no output -OK
Ondamaged1.avi
it outputs[mjpeg @ 0x7fc1dd813800] overread 1
-OK
Ondamaged2.avi
it completed with no output as ingood.avi
- ?????Would someone with video codec/FFmpeg experience please help me understand what’s going on here so I can develop a more robust error check ?
-
How to use libvlc for low-frame-rate rtsp stream decoding
11 mai 2017, par user1547688I am using libvlc for RTSP h.264 bitstream decoding and display in PC. For the best experience (i.e. low latency), I uses the following options
:file-caching=0
:tcp-caching=0
:rtsp-caching=0
:network-caching=0
:clock-jitter=0
:avcodec-fastWith these parameters, the latency is acceptable in comparison to the open-source project "ONVIF device manager"(ODM) where FFMPEG is used for decoding.
When RTSP server deliver low frame-rate RTSP stream, (1 frame/second). These configuration will freeze after displaying a few frames (3-5 frames).
I have tried 2 different approaches
-
Disable synchronization by
:clock-synchro=0
This will enable the decoding process to go on, however, an accumulated period of time lagging could be observed.
- Use network-cache
My experiments shows that
:network-caching=1200
Will make decoding go smoothly, however, the latency is over 1-2 second in comparison to ODM.
Is there a way to handle the low frame rate issue in libvlc without providing such big latency ?
-
-
How to record watching statistics in hls streaming
5 juillet 2023, par qmksbpI implemented a vod streaming system that converts videos to hls with ffmpeg.


And I made a Django program that gives
playlists
andts
files to the player so that the video can be played.

But I don't know how to record the watching statistics.


I used
vediojs
and I know that I can send the watching time from the client to the server and record it.

But We are sure that this method is not accurate and the user can change the statistics.


On the other hand, I have seen vod platforms that do not take the statistics from the player (client) at all, as if the statistics are calculated by the server.


One option is to log the statistics for each ts file that is requested,
but the video buffering by the player means that these statistics are always wrong,
the player may buffer 10 minutes but the user still watches 1 minute.


Any suggestion or experience


I used
vediojs
and I know that I can send the watching time from the client to the server and record it.

But We are sure that this method is not accurate and the user can change the statistics.