
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (25)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Ajouter notes et légendes aux images
7 février 2011, parPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)
Sur d’autres sites (6190)
-
avfilter : Add blue and violet noise generation filters
19 juillet 2017, par George Boyleavfilter : Add blue and violet noise generation filters
For the blue and violet noise, I took the pink and brown noise
respectively and subtracted the offsets instead of adding them. When I
eyeball the frequency spectrum of the resulting outputs it looks correct
to me, i.e. the blue graph appears to be a mirror image of the pink, and
the same can be said of the violet and the brown. I did not do anything
else to confirm the correctness. -
Correct way of recutting HLS playlist with FFMPEG
4 juillet 2020, par somerandomusernameI'm recording a stream on my server and after it finished I need to trim x seconds from the beginning of my video. My stream has
master.m3u8
playlist and then 3 subindex_[0|1|2].m3u8
playlists.

I'm trying different methods, they all seem to generate a result, but nothing as I expect.


For example this :




ffmpeg -i index_0.m3u8 -ss 30 -strict -2 -hls_time 6 output_0.m3u




Seems to generate the correct nr. of
*.ts
files, but playlist is is only 30s long. Original#EXT-X-TARGETDURATION
was set to 6, now it is 8, but actual size is a floating 8.3333...

I'm definitely missing something.


Update 1 :


OK, so I figured out why my
*.m3u8
file was to small, by default it only loads last few records in the list so setting-hls_list_size 0
resolved that. Now I need to figure out how to get rid of floating point video sizes.

Update 2 :


It seems that I need
-hls_flags split_by_time
flag for HLS transmuxer not to ignore myhls_time
option. Now my output is even closer to correct result, still have that floating point video size problem.

#EXTM3U
#EXT-X-VERSION:3
#EXT-X-TARGETDURATION:6
#EXT-X-MEDIA-SEQUENCE:0
#EXTINF:5.933333,
output_clip0.ts
#EXTINF:6.033333,
output_clip1.ts
#EXTINF:5.933333,
output_clip2.ts
#EXTINF:6.000000,
output_clip3.ts
#EXTINF:3.000000,
output_clip3.ts
#EXT-X-ENDLIST



-
Revision 0ba1542f12 : Vidyo : Support for one-pass rc-enabled SVC encoder Adds support for one-pass rc
7 novembre 2014, par Deb MukherjeeChanged Paths :
Modify /examples/vp9_spatial_svc_encoder.c
Modify /vp9/vp9_cx_iface.c
Modify /vpx/src/svc_encodeframe.c
Modify /vpx/svc_context.h
Modify /vpx/vp8cx.h
Modify /vpx/vpx_encoder.h
Vidyo : Support for one-pass rc-enabled SVC encoderAdds support for one-pass rc-enabled SVC encoder with callbacks for
getting per-layer packets.the callback function registration is implemented as an encoder
control function.if the callback function is not registered, the old way of
aggregating packets with superframe will take effect.one more control function “VP9E_GET_SVC_LAYER_ID” has been
implemented to get the temporal/spatial id from the encoder
within the callback. This can be used to get the ids to put on RTP
packet.Change-Id : I1a90e00135dde65da128b758e6c00b57299a111a