Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (74)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Les images

    15 mai 2013
  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (13105)

  • RTP Packets to test RTSP Server

    6 mars 2019, par stackjohnny

    I am new to this domain, but I successfully setup RTSP server in one of the container and when running

    ./rtsp_media_server -l 8445 -s stream1 -p 8000

    it is working fine. where 8445 is the expose port, stream1 is the stream name and 8000 is the intake port

    URL : rtsp://<host>:8445/stream1</host>

    But I need RTP packets to be sent to port 8000 so that I can test the my rtsp media server perfectly.

    Do any online rtp server provides the same ?

    I can see many sample rtsp media server is there like rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov , which I can test in VLC media player. but not sure how to do with RTP packets.

    Please correct me if my understanding is wrong and guide me.

  • Merge remote-tracking branch ’qatar/master’

    20 février 2014, par Michael Niedermayer
    Merge remote-tracking branch ’qatar/master’
    

    * qatar/master :
    libavformat/mpegts : expose raw packet size

    Conflicts :
    libavformat/mpegts.c

    See : f9b997c337873dad99f7fd505588b260febaf32b
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mpegts.c
  • Send a file and parameters to a OpenFaas Dockerfile function

    29 juillet 2021, par Johannes Klauß

    I have a ffmpeg Dockerfile function that I deploy to my OpenFaaS :

    &#xA;

    FROM ghcr.io/openfaas/classic-watchdog:0.1.5 as watchdog&#xA;&#xA;FROM jrottenberg/ffmpeg:4.1-alpine&#xA;&#xA;RUN mkdir -p /home/app&#xA;&#xA;COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog&#xA;RUN chmod &#x2B;x /usr/bin/fwatchdog&#xA;&#xA;# Add non root user&#xA;RUN addgroup -S app &amp;&amp; adduser app -S -G app&#xA;RUN chown app /home/app&#xA;&#xA;WORKDIR /home/app&#xA;&#xA;USER app&#xA;&#xA;# Populate example here - i.e. "cat", "sha512sum" or "node index.js"&#xA;ENV fprocess="ffmpeg"&#xA;# Set to true to see request in function logs&#xA;ENV write_debug="false"&#xA;&#xA;EXPOSE 8080&#xA;&#xA;HEALTHCHECK --interval=3s CMD [ -e /tmp/.lock ] || exit 1&#xA;&#xA;CMD ["fwatchdog"]&#xA;

    &#xA;

    But I cannot figure out how I would be able to stream a file to the function and give parameters, so that ffmpeg knows about the file and parameter.&#xA;I am fairly new to OpenFaaS and maybe this is trivial, but I cannot wrap my head around it.

    &#xA;

    Any help would be much appreciated.

    &#xA;