
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 (101)
-
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 (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...)
Sur d’autres sites (8047)
-
Link ffmpeg to Pydub in Serverless layer
15 mars 2021, par akaiI'm using the Serverless framework to deploy an app on AWS. I have created a layer, defined as follows in
serverless.yml
:

layers:
 ffmpeg:
 path: layer



I also excluded it from the main file bundle :


package:
 exclude:
 - layer/**



and defined a lambda function :


cut_audio:
 layers:
 - {Ref: FfmpegLambdaLayer}



In this function I use the Pydub library, which needs to access the ffmpeg layer. At the moment I have the following error
FileNotFoundError: [Errno 2] No such file or directory: 'ffprobe'
, meaning I have to link ffmpeg asAudioSegment.converter(path)


How do I get the path of my layer ?


Edit : could I solve this by bundling both Pydub and ffmpeg in the layer ?


Edit 2 : the eziotedeschi/AWS-Lambda-Layer-Pydub github repository doesn't seem to help. I get the following error
No module named 'pydub'
. I am using Python3.8 as runtime, that might be the issue.

-
avcodec/cbs_av1 : fix setting FrameWidth in frame_size_with_refs()
24 août 2020, par James Almeravcodec/cbs_av1 : fix setting FrameWidth in frame_size_with_refs()
Section 5.9.7 of the spec states
UpscaledWidth = RefUpscaledWidth[ ref_frame_idx[ i ] ]
FrameWidth = UpscaledWidth
FrameHeight = RefFrameHeight[ ref_frame_idx[ i ] ]
RenderWidth = RefRenderWidth[ ref_frame_idx[ i ] ]
RenderHeight = RefRenderHeight[ ref_frame_idx[ i ] ]Meaning FrameWidth must not be set to RefFrameWidth[ ref_frame_idx[ i ] ]
like we're currently doing.Reviewed-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>
Signed-off-by : James Almer <jamrial@gmail.com> -
Why does HTML5 video with very large mp4 (with +faststart, ie metadata at beginning), take ages to load ?
8 septembre 2015, par Tom JenkinsonThe video is rendered with ffmpeg with the "faststart" flag added meaning the metadata should be at the start of the file, and the server appears to be handling partial content requests correctly, so why does it need to have downloaded so much of the video before the player becomes enabled and can play the video ? I am testing it in Google Chrome.
Once the player becomes enabled I can seek around to various points in the video pretty instantly and see the new partial content requests being made.
Here is a link to the video : http://iptv.la1tv.co.uk/unibrass.mp4
Here is a jsbin with the video tag : https://jsbin.com/rahewidoru . It takes a few minutes but does work after it loads.
Any suggestions ?
I realise there are other methods like HLS and dash which use chunks, but I would like to know why it isn’t working this way because I can’t find anywhere that provides a reason as to why it doesn’t work well.