
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (105)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 (7550)
-
How to embed m3u8 from ffmpeg Raspberry in Network Webserver
25 octobre 2022, par FunnyOI have a Raspberry-Pi converting an RTSP-Stream to HLS-Segments via ffmpeg.
Now when I try to embed the Stream,


I use this :




 

<video class="video-js vjs-default-skin" width="400" height="300" controls="controls">
 <source type="application/x-mpegURL" src="http://192.168.2.45/files/hls/live.m3u8">
</source></video>
<code class="echappe-js"><script src="https://vjs.zencdn.net/ie8/ie8-version/videojs-ie8.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/videojs-contrib-hls/5.14.1/videojs-contrib-hls.js"></script>

<script src="https://vjs.zencdn.net/7.2.3/video.js"></script>



Working like a charm on the local raspberrypi apache2 Server.


Now the problem is, I cannot display this stream with the identical code on a seperate device.


What am I doing wrong ?
Is there a Firewallport I need to open ?
I dont think so ?
I can access the files when opening : http://192.168.2.45/files/hls/ on the seperate device.


-
playing live streaming with video.js
12 juin 2015, par randomuser1I want to stream on a webpage a video live that I receive from a server (with ffserver). So far when I write a very simple code :
<code class="echappe-js"><script src="http://www.andy-howard.com/js/libs/jquery-1.8.2.min.js"></script>
<script src="http://vjs.zencdn.net/4.12.6/video.js"></script>
then it doesn’t work. But when I replace the line :
<source src="http://10.172.180.235:8090/live.flv" type="video/x-flv">
</source>with this one :
<source src="http://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
</source>then I can see the stream, but it comes from a file... Is there a way to display on my webpage live stream coming from ffserver ? Thanks.
-
React Native How to add a text on a video using FFMPEG-react-native-kit
14 août 2023, par MZiyad---videoPath.path : from temporary storage
---outputVideoUri : temporary storage
---fontPath : my font family name
--- command
command =
-y -i ${videoPath?.path} -vf "drawtext=fontfile='${fontPath}':text='My text starting at 640x360'::x=640:y=360:fontsize=24:fontcolor=white" -crf 28 -c:a aac -strict -2 -map "[0vl]" -map 2:a -shortest ${outputVideoUri}
;

it's not working


I need some one to help me add a water mark text to a video in react native,