
Advanced search
Medias (17)
-
Matmos - Action at a Distance
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Danger Mouse & Jemini - What U Sittin’ On? (starring Cee Lo and Tha Alkaholiks)
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Cornelius - Wataridori 2
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 September 2011, by
Updated: September 2011
Language: English
Type: Audio
Other articles (98)
-
MediaSPIP 0.1 Beta version
25 April 2011, byMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 February 2011, byMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
HTML5 audio and video support
13 April 2011, byMediaSPIP 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 (...)
On other websites (8537)
-
Unknown input format: 'x11grab'
5 July 2017, by jjhguys:
I have problems when i compile ffmpeg and run ffmpeg in linux.
My environment:
1: ubuntu 17.10_x64_bit(i don’t think the os version is the key)
2: gcc (Ubuntu 6.3.0-19ubuntu1) 6.3.0 20170618
3: ffmpeg open source code:3.2
first, i download the source code from ffmpeg official site. I compile this project with there instructions:
./configure --prefix=/home/jjh/software/ffmpeg --enable-shared
make
make installand it worked without any error except some warning, then i run:
./ffmpeg -h
i make sure that it works and output normally.
but i want use ffmpeg to grabbing screen. so i use this construction(o):
ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0 /tmp/out.mpg
then output error:
Unknown input format: 'x11grab'
i want to re-compile this project with —enable-x11grab option, btw , so many solution tell me to to this. but when i add this option, i get some errors:
Invalid option --enable-x11grab
some people says that i should install some libs:
libxfixes-dev
sudo apt-get install libxext-devso i installed these libs, but it always show this error. pls help me.
-
avformat/hlsenc: fix default AES key file url with variant streams
19 January 2020, by Bela Bodecsavformat/hlsenc: fix default AES key file url with variant streams
Currently when hls_enc is active and there are multiple variant stream
outputs, default key file url construction does not work, because it is
based on the FormatContext' url field. But in case of multiple variant
streams, it contains the variant m3u8 output playlist url that contains
the %v placeholder. So the result key file url will hold the %v
placeholder causing run time error message about "could not write the
key file".
This patch correct this behaviour, and use the master playlist url for
constructing the output key file url when master playlist is vailable.Signed-off-by: Bela Bodecs <bodecsb@vivanet.hu>
-
@ffmpeg/ffmpeg: Uncaught (in promise) ReferenceError: SharedArrayBuffer is not defined
19 May 2022, by FlobbinhoodI have a small react app with a node.js backend (monorepo). The client is using @ffmpeg/ffmpeg, and all works fine locally, but when deployed to Heroku I'm getting the error
ReferenceError: SharedArrayBuffer is not defined
. This happens when I runffmpeg.load()
. Note that I am only using ffmpeg on the client in the React app.

What I have done so far:


- 

- Ensured that my deployed app is using https
- Added these lines in
setupProxy.js
inapp.use
(located in the client directory). See this answer for context






response.setHeader('Cross-Origin-Opener-Policy', 'same-origin');
response.setHeader('Cross-Origin-Embedder-Policy', 'require-corp');



- 

- Registered for an origin trial with chrome. This actually worked, but I'd prefer a more permanent solution that works across browsers.
- Tested debugging
crossOriginIsolated
, and verifying that it istrue
locally butfalse
on my deployed site.






It seems like something is wrong with my Cross-Origin config, or maybe it's just not being applied. Any help would be appreciated.