Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (95)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (9928)

  • ffmpeg how to record and preview at the same time

    28 octobre 2022, par mahdi gh

    I want to capture video+audio from directshow device like webcam and stream it to RTMP server. This part no problem. But the problem is that I want to be able to see the preview of it. After a lot of search someone said pipe the input using tee muxer to ffplay. but I couldn't make it work. Here is my code for streaming to rtmp server. how should I change it ?

    



    ffmpeg -rtbufsize 8196k -framerate 25 -f dshow -i video="Microsoft® LifeCam Studio(TM)":audio="Desktop Microphone (Microsoft® LifeCam Studio(TM))" -vcodec libx264 -acodec aac -strict -2 -b:v 1024k -b:a 128k -ar 48000 -s 720x576 -f flv "rtmp://ip-address-of-my-server/live/out"


    


  • fate : Add test for mts2 (mss4) codec

    19 avril 2016, par Petru Rares Sincraian
    fate : Add test for mts2 (mss4) codec
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/fate/microsoft.mak
    • [DH] tests/ref/fate/mts2-xesc
  • How do i overlay logo & transcode with low Bandwidth/CPU ? [on hold]

    30 janvier 2017, par S Xhaferaj

    I’m transcoding a 1GB .mp4 movie with overlay and saving it as output.mp4
    But when it saves it doubles or triples the size of GB’s 1GB = 2.5/3GB.

    Anyway to transcode and save the output with similiar bandwidth or atleast if its 1GB TO 1.5 but triple, its alot...

    This is my code i use....

    ffmpeg -i A2016.mp4 -i http://example.png -filter_complex "[1:v]format=argb,geq=r='r(X,Y)':a='0.6*alpha(X,Y)'[zork];[0:v][zork]overlay" -vcodec h264 -acodec aac -strict -2 -ac 2 -dn -preset ultrafast -aspect 16:9 -r 25 -g 50 -threads 0 trA.mp4

    Any help, Greatly appreciated !