Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (60)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (10370)

  • How to save a DShow input on a file and simultaneously publish it on rtst stream ?

    18 novembre 2020, par user2586476

    Piping command does not work properly when your input is coming from a device (e.g. a webcam) so you cannot work with 2 output. I need to save the webcam stream on a file (.mkv) and, at the same time, publish it on a rtst server. I tried the following :

    


    ffmpeg -y -f dshow -loglevel info -rtbufsize 2147.48M -i "video=my_camera" -vf hflip,rotate=PI ^
-c:v libx264 -preset fast -crf 25 -pix_fmt yuv420p ^
-minrate 2M -maxrate 4M -bufsize 3.5M -s 1920x1080 -f tee "[f=mkv]'C :\test.mkv'|[f=rtsp]rtsp ://localhost:8554/mystream]"

    


  • FFMPEG add/remove inputs on the fly / dynamically

    27 novembre 2022, par Petro O. Bochan

    We seek a command to be able to add/remove video/audio inputs on the fly and apply filters without restarting a command. That way, we may continuously manipulate the output stream without restarting it - both a recorded file as well as the stream. Is it feasible doing ?

    


    We tried this approach Switch video from webcam while stream live but it only manipulates existing inputs.

    


  • Video format that can be played while recording ?

    28 juin 2014, par vantrung -cuncon

    I want to make a kind of server-client software which would support live webcam. My approach is to record webcam to an avi on hard disk while transfering each fresh byte of that avi to the other peer who will play it till the most recent byte that is transfered. But of course, avi failed to be played while file is being recorded.

    My question is : is there any video/audio format out there that suite my need, to be playable while being recorded ?

    I’ve tried around with ffmpeg for a while, and I wonder if "ffplay" which is always included with ffmpeg can do the trick ? ( very few documentatons & examples about ffplay could be found)

    PS : I’m using MS built-in function MCISendString to play video, and any 3rd party component would be welcomed as well as any suggestion !