
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (32)
-
L’espace de configuration de MediaSPIP
29 novembre 2010, parL’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
Il permet de configurer finement votre site.
La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
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 (6842)
-
capture video conference between 1:1 user and broadcast to an rtmp url
20 octobre 2020, par Asif AlamgirI am currently working on nodejs and socket app that is currently doing 1:1 video conference that is using webrtc. Videos are two separate element in the html and i would like to merge them together so that i can broadcast to rtmp url for public view (2:many). Is this possible


For webrtc, i followed this tutorial https://www.youtube.com/watch?v=DvlyzDZDEq4, and for broadcasting i am using ffmpeg which current does 1 video stream.


Please confirm if this is doable


Update


I was able to merge the video using
https://www.npmjs.com/package/video-stream-merger


And now the final issue


i am receiving merger.result which is merged stream and I tried to create a mediaRecorder object. Callback method for MediaRecorder ondataavailable is called only once but not every 250ms which i need to broadcast to youtube. How can i do this ?


var merger = new VideoStreamMerger(v_opts);
...
...
merger.start()
myMediaRecorder = new MediaRecorder(merger.result);
myMediaRecorder.start(250);
myMediaRecorder.ondataavailable = function (e) {
 console.log("DataAvailable")
 //socket.emit("binarystream", e.data);
 state = "start";
 //chunks.push(e.data);
}



-
Poor video quality in first few frames using video output options in gganimate
27 janvier 2021, par NauticaI'm trying to export some animations I've made using gganimate through video format as the gifs I'm creating are quite large.


Sample code :


library(gganimate)

p <- ggplot(mtcars, aes(factor(cyl), mpg)) +
 theme_dark() +
 theme(panel.grid = element_line(colour = "white")) +
 geom_boxplot() +
 transition_states(
 gear,
 transition_length = 2,
 state_length = 1
 ) +
 enter_fade() +
 exit_shrink() +
 ease_aes('sine-in-out')

anim_save("example.mp4",
 animate(
 p,
 nframes = 450,
 fps = 25,
 width = 1280,
 height = 720,
 type = "cairo",
 start_pause = 50,
 end_pause = 50,
 renderer = av_renderer()
 ))



Produces the video seen here : https://vimeo.com/505019987


With the standard ggplot2 theme : https://vimeo.com/505020822


This is another example of something I made using gganimate : https://www.youtube.com/watch?v=fHzjl_z_sSo


You can see that the video quality in the first few frames are very bad. In the video with the standard ggplot2 theme and the YouTube video, the gridlines and watermark text are not visible at the start but fade in much later. I don't know much about video codecs but I assume it has something to do with the ffmpeg library the
av
package/av_renderer()
is using. Has anyone experienced something like this ?

-
Not able to play .mpd file of MPEG-DASH stream
29 novembre 2018, par JAVA CoderI have made segments of a mp4 file and uploaded all .m4s segments,.initmp4 file and the .mpd file to s3 bucket and used the url of .mpd file to play the full file using online DASH players of akamai,bitmovin,videoJs,dashJs etc but failed.
When I tried to play the .mpd file by using GPAC MP4Client on command prompt just can hear the audio with a blank screen.
You can find the commands here which I have used to make segments of the mp4 file.