
Recherche avancée
Autres articles (51)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...) -
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 (...)
Sur d’autres sites (4345)
-
Android 6.0 UnsatisfiedLinkError : dlopen failed has text relocations
20 décembre 2016, par Jerikc XIONGThere are many links to discuss the issue :
libavcodec.so : has text relocations
https://github.com/wseemann/FFmpegMediaPlayer/issues/64
I’m confused that i got the error on some devices found by fabric, but not the whole Android 6.0.
I use the ijkplayer :
- ijk version : 0.4.4.1
- ffmepg version : N-82274-g34aeb5d
- ndk version : r10e
- computer info : macOS Sierra, version 10.12.1
How to explain that ?
-
ffmpeg command to GStreamer pipeline for srtp stream
1er avril 2021, par Muhammet IlendemliI would like to convert this working ffmpeg command to a GStreamer pipeline but I couldn't manage to get it working. Tried using srtpenc toset the key to a hex representation of the buffer and udpsink with the target host and port set.



The command I currently have :



ffmpeg -re -i <<rtspurl>> -map 0:0 -vcodec h264_omx -pix_fmt yuv420p \
 -r 30 -f rawvideo -tune zerolatency -vf scale=1280:720 -b:v 300k \
 -bufsize 300k -payload_type 99 -ssrc <<ssrc>> \
 -f rtp -srtp_out_suite AES_CM_128_HMAC_SHA1_80 \
 -srtp_out_params <<base64key>> srtp://<<targetip>>:<<targetport>>?rtcpport=<<targetport>>&localrtcpport=<<targetport>>&pkt_size=1378
</targetport></targetport></targetport></targetip></base64key></ssrc></rtspurl>



Some references :



- 

-
https://github.com/KhaosT/HAP-NodeJS/blob/master/src/lib/Camera.ts
-
https://github.com/KhaosT/HAP-NodeJS/wiki/IP-Camera#prepare-stream






-
-
There is a video stream option and player. But can't find where to manage video and stream
26 janvier 2018, par Chanaka De SilvaI’m working on this repository. in this application, we can upload a video taken by a action camera or drone, and it uses GPS coordinates (lat,lang) and draw the path of the video in the map. And also we can play the video via the system too after upload.
Bt the size of the video is too much high. So it take a lot of time to process video and also download and play when we host in a server. I wanted to reduce size. So I write this code.
try {
new ffmpeg('demo.mp4', function (err, video) {
if (!err) {
video
.setVideoSize('50%', true, false)
.setVideoFrameRate(30)
.save('output.mp4', function (error, file) {
if (error) {
console.log("error : ", error);
}
if (!error)
console.log('Video file: ' + file);
});
console.log('The video is ready to be processed');
} else {
console.log('Error: ' + err);
}
});}
But the issue is I can’t find where is the video coming from in this application. We need to pass like "demo.mp4" to my code as you can see. This is the index file if this application : https://github.com/chanakaDe/replay-lite/blob/master/frontend/index.html
And this is the player file : https://github.com/chanakaDe/replay-lite/blob/master/frontend/player.js
This is the file called api.js : https://github.com/chanakaDe/replay-lite/blob/master/frontend/api.js
This file also has some video functions : https://github.com/chanakaDe/replay-lite/blob/master/gopro/index.js
Please guys, sometimes you will see this questions as a silly question. But you have the repo to check and can you guys please check and let me know where to get a video file or stream to add my size reduce code ?