Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (53)

  • 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 (6547)

  • ffmpeg non-continuous live streaming

    2 août 2022, par xrfang

    I have an IP camera which is normally power off, and is triggered by Infra-Red signal. I plan to use ffmpeg to pull RTSP stream from it, and convert to HLS video segments.

    


    My question is, can ffmpeg work continuously and output blank MPEGTS chunks while it is not able to connect to the camera, i.e. works 7x24, waiting for video data, instead of crash/exit if it cannot connect to the camera.

    


  • How to restrict CPU load of FFmpeg call ?

    9 septembre 2022, par rattlesnake

    As described here, for example, I'm using FFmpeg to check video file integrity like this :

    


    ffmpeg -v error -i input.mp4 -f null -


    


    Since I plan to run this in the background, I want to limit the CPU load. I already tried -threads 1, -filter_threads 1, -filter_complex_threads 1. Nothing helps and FFmpeg still uses as many cores as it can get. Which parameter am I overlooking ?

    


  • Live streaming to YouTube over HLS with FFMPEG [closed]

    19 septembre 2022, par Ash Raj

    When I stream my FaceTime camera to YouTube over HLS, my video freezes every couple seconds. Which settings do I have wrong, or am missing ?

    


    ffmpeg \
-f avfoundation \
-framerate 30 \
-video_size 1920x1080 \
-pixel_format yuyv422 \
-probesize 10M \
-i "0:0" \
-c:v hevc_videotoolbox \
-b:v 4500K \
-tag:v hvc1 \
-c:a aac \
-method POST \
-f hls \
"https://a.upload.youtube.com/http_upload_hls?cid=STREAM_KEY&copy=0&file=index.m3u8"


    


    I'm troubleshooting this with my FaceTime camera right now, but I plan on using a capture card with a 4K studio camera after I get this working