Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (9253)

  • MAINTAINERS : modify the hlsenc description

    21 septembre 2017, par Steven Liu
    MAINTAINERS : modify the hlsenc description
    

    change the hlsenc from hls encryption to hlsenc

    Suggested-by : Aman Gupta <aman@tmm1.net>
    Reviewed-by : Lou Logan <lou@lrcd.com>
    Signed-off-by : Steven Liu <lq@onvideo.cn>

    • [DH] MAINTAINERS
  • Installing FFMPEG on my EC2 instance takes too long ; what am I doing wrong ? [closed]

    24 août 2023, par Shaban Khawar

    I found a good article on how to download onto my EC2 instance : link&#xA;Here's the issue. It takes forever ! It takes around 15 minutes to install.

    &#xA;

    I'm running my EC2 instance on Amazon Linux 2023, so no apt-get for me.&#xA;Also my EC2 instance is created by my EB environment, so if auto-scaling occurs, my instance will be terminated and a new one will be created. I can set .ebextensions to run all the commands to install FFMPEG again but as mentioned above, it takes forever ! That means for 15-20 minutes, my server is down because of one dependancy. I feel like I'm going about this the wrong way, so any advice is appreciated.

    &#xA;

  • Live streaming of processed frames to AWS

    22 avril 2021, par MinasCham

    I'm working on a project where i need to capture live video feed from an RTSP camera source, process the video frame-by-frame and stream the result to an AWS Service.

    &#xA;

    So far, my solution :

    &#xA;

      &#xA;
    • Captures frames from the RTSP camera source using OpenCV and performs some processing.
    • &#xA;

    • Feeds the processed frames to an ffmpeg pipe that packages the content for online streaming (HTTP Live Streaming - hls) and saves it locally.
    • &#xA;

    • Transfers the media content to an Amazon Kinesis Video Stream using a Gstreamer pipeline element with kvssink as a sink element.
    • &#xA;

    &#xA;

    My questions are :

    &#xA;

      &#xA;
    • Currently I'm saving the content both locally and on an Amazon Kinesis Video Stream. Is this efficient ?
    • &#xA;

    • Is it possible to directly stream the frames to the Amazon kinesis Video Stream (perhaps by connecting the ffmpeg output with the gstreamer pipeline element) ?
    • &#xA;

    • Is the file format suitable for this implementation or would it better to encode the media differently ?
    • &#xA;

    &#xA;