Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (105)

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

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (9421)

  • Controlling ffmpeg at runtime [closed]

    4 août 2023, par Eko

    Basic Command :

    


    ffmpeg -i F:\Downloads\big_buck_bunny_720p_20mb.mp4 -filter_complex "zmq=bind_address=tcp\\\://127.0.0.1\\\:1236,hue=h=1:s=1" -vcodec libx264 -f mpegts - | ffplay -

zmqsend "Parsed_hue_1 h 90"


    


    I got zmqsend from ffmpeg-tools.zip and added to my ffmpeg bin directory

    


    execute above ffplay command from terminal window #1 - and see video playing

    


    Open terminal window #2 and execute : zmqsend "Parsed_hue_1 h 90"

    


    result : no change to video yaw. No errors either

    


    What am I doing wrong or something I missed ?

    


  • how to use a video stream as input in python/opencv programme

    11 juillet 2016, par vasu gupta

    I am able to stream and receive webcam feed in two terminal via udp

    command for streaming :

    ffmpeg -i /dev/video0 -b 50k -r 20 -s 858x500 -f mpegts udp://127.0.0.1:2000  

    command for recieving :

    ffplay  udp://127.0.0.1:2000

    Now i have to use this received video stream as input in python/opencv how can i do that.
    I will be doing this using rtp and rstp as well.
    But in case of rtsp it is essential to initiate the receiving terminal, but if I do that then port will become busy and my program will not be able to take the feed.How could it be resolved.
    I am currently using opencv 2.4.13, python 2.7 in ubuntu 14.04

  • ffmpeg no re-encode upload finishes too early

    15 octobre 2022, par Amine Tbaik

    I have a pre-encoded video according to youtube recommendations, and I set ffmpeg to upload it without another re-encode. after 20 seconds youtube says the stream ended.
    
while I can see in my terminal that ffmpeg is still running and sending up data.
    
my ffmpeg command is :

    


    ffmpeg -i video.flv -vcodec copy -acodec copy -f flv "rtmp://a.rtmp.youtube.com/live2/my_key"


    


    my understanding is the upload happens so fast (I have 1Gbps fiber internet) while ffmpeg processor is still running in the background on my terminal.
    
is that the case ? is there anything I can do about it or to fix this ?