Advanced search

Medias (2)

Tag: - Tags -/media

Other articles (80)

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

    5 September 2013, by

    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 June 2013, by

    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 ) (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 February 2011, by

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

On other websites (8938)

  • Reading from IP Camera (RTSP) using FFmpeg results in 5xx Server Error

    9 December 2015, by bcop

    I have a scenario where I am trying to read from IP camera using RTSP method.

    On my development PC everything is working fine, the rtsp url is something like:

    rtsp://admin:12345@192.168.1.60:554

    but when I try to test it over a friend’s place, he has different camera (Axis IP camera), and the url fails to open.
    The self generated log is something like:

    Error: avformat_open_input()
    error message: Server returned 5XX Server Error reply

    I tried opening it using HTTP tunneling, but this time I’m getting a different error:

    error message: Error number -5 occurred

    The latter error message even appears on my dev PC (just to mention that I tried this as well); so HTTP tunnel is no good.

    Any one knows how to fix 5XX Server Error?

    Thanks,

  • Create Video Clips without stopping MediaRecoder in android

    29 June 2015, by samma89

    I’m trying to create 60s clips without stopping MediaRecorder. I’m using a LocalSocket and set it as the MeidaRecorder’s output(FileDescriptor).

    I’ve understand that Mp4 output format is not the suitable one for this approach.

    I’m assuming this should be possible with MPEG_TS(a hidden format) or some video format which will write it’s headers at the start. I’ve seen Streaming Apps like spydroid-ipcamera has done streaming pretty smoothly.

    Please reply if anyone know how to do this. Or may be a different way to do this. I just want to create multiple clips without having to stop() and start() every 60 seconds because that way i’ll be loosing 1 2 seconds between stop-start.

    Thanks.

  • FFMpeg Playlist with pipe for streaming [on hold]

    24 July 2017, by sword1st

    I’m trying to find a solution for stream multiple files without any connection breaks. I found this answer from KKetch :

    I managed to stream a static playlist of videos by using for each video a pipe (ex vid1.mp4 -> pipe1, vid2.mp4 -> pipe2 etc). Then i write into a single stream named pipe "stream" this way cat pipe1 pipe2 pipe3 > stream, and i use the stream pipe as input in FFMPEG to publish my stream.

    (I’m using windows. I don’t know to use named pipes. I searched a lot but i couldn’t do it. I can do it with vb.net if it’s possible. But i don’t know how:/ Sorry for my bad english)

    But i can’t reply his message cuz i don’t have enough reputation. I hope someone can help me how can i use pipes for input like playlist. Thanks!