
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (54)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (6427)
-
How to save locally rtmp stream on react native ?
22 mars 2021, par RanSTI'm using React Native to display a live stream from RTMP server - and it works great using NodePlayerVideo component from react-native-nodemediaclient.



However, I also need to save that same stream to a local file on the device. How can I do it ?



My idea is to use react-native-ffmpeg but it doesn't work.



What is the right ffmpeg command to use ? What is the recommended solution ?


-
Running FFMPEGJS in a React Project
23 mars 2020, par beekI’m trying to get https://github.com/ffmpegjs/ffmpeg.js/ running in a Create React App build project.
import {createWorker} from '@ffmpeg/ffmpeg';
When I import the library the build fails with
./node_modules/@ffmpeg/ffmpeg/src/createWorker.js
Module parse failed: Unexpected token (21:4)
You may need an appropriate loader to handle this file type.
| logger,
| progress,
| ...options
| } = resolvePaths({
| ...defaultOptions,I’m not sure how to handle this, or where the problem might be. Is this a Webpack issue ?
-
In fluent-ffmpeg, how do you include multiple video filters ?
31 mars 2020, par wongzThe code below adds the watermark but ignores the scaling.
How do you include multiple video filters in fluent-ffmpeg ?ffmpeg(inputFileName)
.inputOptions(['-safe 0', '-f concat'])
.outputOptions([
'-filter:v scale=w=1280:h=720',
"-filter:v drawtext=text='watermarkText':x=W-150:y=H-th-10:fontsize=32:fontcolor=white",
'-crf 10'
])
.save('output.mp4');I tried these formats as well inside
.outputOptions([])
to no avail :
'-filter:v <param1>, <param2>'</param2></param1>
'-filter:v <param1>; <param2>'</param2></param1>
'-filter:v', '<param1>', '<param2>'</param2></param1>