Recherche avancée

Médias (91)

Autres articles (60)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (10782)

  • How can I create a stream of my screen on a Windows computer for another device on my network ? [on hold]

    30 novembre 2018, par user279040

    I want to view what is seen on my Windows laptop screen on my tv, which is connected to a device running enigma 2, "screen mirroring". There are no software or plugins that will work on the device for this.

    However the device can play live stream urls of the form :

    http://portal.geniptv.com:8080/live#/abc1/abc2/19517.ts

    I am thinking maybe I could get something to create an expanding .ts file that’s capturing the screen, and then serve this up through http?

    It may also be able to use other protocols like udp :// or other file extensions, I would certainly give them a shot if they reduced lag.

    I spent hours installing different streaming software, none of which worked. I am just looking for a simple solution where I might give ffmpeg a command and it would do all I require. I have python installed as well if I need that to for example set up a http server.

  • mid-roll ads in HLS or mpeg-dash [on hold]

    15 août 2018, par evan

    I’m encoding my videos with ffmpeg and transcoding them into HLS videos. I want to add mid-roll ads to my converted videos.

    I was wondering what is the best way to do it ? should I just add the ads to my video and make a big video stream and then do the HLS thing ? or I should break the HLs video and put the ads in the middle while playing ?

    My content is live streaming and I want to add mid-roll ads in the middle of my video while playing.

    ffmpeg -i main720.MTS -movflags faststart -s 640*360 -r 24 -vcodec libx264 -preset slow -tune zerolatency -tune fastdecode -b:v 300k -maxrate 300k -bufsize 400k -g 96 -an hls3/main720_300.mp4 -s 1280*720 -r 24 -vcodec libx264 -preset slow -tune zerolatency -tune fastdecode -b:v 700k -maxrate 700k -bufsize 1000k -g 96 -an hls3/main720_700.mp4 -hls_time 4 -hls_segment_filename 'hls3/file%03d.ts' -hls_list_size 0 hls3/out.m3u8
  • Rendering a remote raw h264 video stream in javascript using WebRTC [on hold]

    20 mai 2018, par Shahabi

    I’m new in Video streaming and decoding for rendering on Web Browser.
    My plan is to create a raw h264 stream on localhost environment and in Nodejs application, I want to read the raw h264 stream and render it on Web browser with Low latency.

    For creating a stream, I’m using VLC Stream option in h264 format on HTTP server. I’m using my laptop webcam and mic for streaming audio/video on localhost environment.

    Now I’m stuck on getting that stream on web page and render it on Web browser.
    I want to use WebRTC or any other opensource library for fast rendering.

    Anyone know or guide me into the right direction where i can solve my problem as mention above ?

    Thanks