Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (41)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • How to bybass any site that restrict multiple live streaming broadcast on a single account ? [closed]

    4 août 2024, par kino pizdec

    I am looking for a working way to use 1 video.mp4 input for 1 site, for 1 account, but broadcast in several output, for example, to different rtmp servers or stream keys. Something similar is seen on YouTube, where 1 channel has many live streams.

    


    I want to do the same, but for another site that offers the following connection options :

    


      

    • rtmp server and stream key
    • 


    • Real webcam
    • 


    • OBS Virtual webcam
    • 


    


    I've seen it's possible. People stream up to 4 streams simultaneously on 1 account with 1 video. The question is how.

    


    I have been tormenting the chat GPT for several days and trying different options for writing code for ffmpeg, but I have not been able to achieve more than 2 streams at the same time. I have already managed to make 2 streams at the same time twice, but I have completely forgotten how to do this, because I am constantly trying new code configurations in ffmpeg.

    


    Here is code that I use to attempt to solve my issue.

    


    @echo off
setlocal EnableDelayedExpansion

set "VIDEO_FILE=E:\MegaStream\VIDEO.mp4"

set "streams="
for /f "delims=" %%a in (stream_config.txt) do (
    set "streams=!streams! -f flv %%a"
)

:loop
start /b ffmpeg.exe ^
-re ^
-stream_loop -1 ^
-i "!VIDEO_FILE!" ^
-c:v libx264 ^
-preset veryfast ^
-tune zerolatency ^
-b:v 4000k ^
-maxrate 4400k ^
-bufsize 8000k ^
-pix_fmt yuv420p ^
-g 60 ^
-keyint_min 60 ^
-sc_threshold 0 ^
-r 30 ^
-c:a aac ^
-b:a 96k ^
-ar 44100 ^
-threads 4 ^
-x264opts "nal-hrd=cbr:force-cfr=1" ^
-max_muxing_queue_size 1024 ^
-map 0:v:0 -map 0:a:0 !streams!
-loglevel debug

echo Streaming... Press 'Q' to quit or 'R' to restart.
:input
choice /c QR /n >nul
if errorlevel 2 (
    taskkill /F /IM ffmpeg.exe >nul 2>&1
    echo Restarting stream...
    goto loop
) else if errorlevel 1 (
    taskkill /F /IM ffmpeg.exe >nul 2>&1
    echo Quitting...
    exit /b
)
goto input 


    


    Plus config file with 2 separate lines :
rtmp server 1 / stream key 1
rtmp server 2/ stream key 1

    


    I play a lot with config file and code. I edited them differently so many times so once it worked and site played my 2 stream simultaneously but now I struggle with consistent solution. Would love to hear any guesses on how to bypass these rules.
P.s.
I'm already advised many times on ethitcs and usage of this method, so I'm concerned thanks.

    


    What does not work :

    


      

    • Launching 2 copies of OBS with different servers and stream keys gives an error
    • 


    • Plugin for multistreaming OBS
    • 


    • Using 2 devices, site says "You already have a streaming sesssion" and offers to finish first to start second
    • 


    


  • Python OpenCV real-time blurring with saving to output

    10 janvier 2024, par Oleg Novosad

    I have a live video stream via RTSP from my IP camera. I want to blur faces on that stream and output for mobile usage (HLS, H.264, etc). All this should ideally happen in real-time — with the minimum of resources consumed. I plan to deploy this later to some cloud, so the less money I spend on resources the better.

    


    Currently I have a working solution like so :

    


      

    • I capture video using OpenCV
    • 


    • I update every frame with Gaussian Blur and save it to some folder
    • 


    • After some amount of frames I create MP4 / AVI / whatever video and make it accessible via HTTP URL
    • 


    • All of it is running on Django for now
    • 


    


    I know I am doing something wrong, can someone suggest a better solution ?

    


  • mp4 muxing problems on dm365 board

    25 mai 2013, par Ulterior

    I happen to be stuck with strange TI codec issues while encoding video. To cut story short - the encoded data which is generated by TI mpeg4 codecs are not 'understood' by nothing else, but VLC and media classic player.

    After really long googling and several seasons I face to you stackoverlowers to help me understand what is wrong in the encoded frame headers, because I really fail to find any answers.

    AviDemux 2.6.1 opens and remux-es video data without problems. So there is hope to understand whats is wrong with mp4 generated data...

    I would really appreciate any help from mp4 gurus out there...

    the link to the problem file