Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (55)

  • 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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4933)

  • How can I upscale a stereo signal using PLII on a VM

    27 mars 2024, par andersmi

    I want to upscale a stereo signal with PLII from an input on a VM and sent it to an output after the upscale.

    


    I am thinking of installing Voicemeeter/Virtual Audio Cable or something like that to get an input on the VM.
I will then be able to use Dante Via on the VM host to sent the audio to the VM input and receive it again from the VM output on Dante Via then send it to my amplifier.
The solution needs to be able to initialize itself after reboot.

    


    I have looked into different solutions the most promissing seems to be FFDShow and FFMpeg, but there is not much information about how to do this. I don't care what is used just as long as it support PLII.

    


    I am looking for information on how to use FFDShow/FFMpeg with an application I develop or any other way to solve this.

    


    Thanks

    


  • How to rpt stream between two different Laptop [closed]

    19 février 2024, par Faruk

    I want make some test for rtp. I connected Ubuntu Laptop and Windows Laptop with ethernet cable. I want to stream from one computer and run it with VLC from the other.

    


    I did two test for this :

    


    First test(on Ubuntu)

    


      

    1. I streamed with this command : ffmpeg -re -i ~/Videos/test.mp3 -acodec pcm_s16be -ar 44100 -ac 2 -payload_type 10 -f rtp rtp://127.0.0.1:8080
    2. 


    3. I started VLC on Ubuntu and I enter rtp://127.0.0.1:8080 to Open Network Stream
    4. 


    


    This worked.

    


    Second Test

    


      

    1. I connected two Laptops via ethernet cable. Main laptop is Ubuntu and the other one windows.
    2. 


    3. Windows laptop IP address is : 10.42.0.167 (I tested internet and windows laptop can connect to internet)
    4. 


    5. I streamed with this command : ffmpeg -re -i ~/Videos/test.mp3 -acodec pcm_s16be -ar 44100 -ac 2 -payload_type 10 -f rtp rtp://10.42.0.167:8080
    6. 


    7. I checked data on Ubuntu with Wireshark and data is going. I did this test on Windows laptop and data is coming.
    8. 


    9. I started VLC on Windows laptop and I enter rtp://10.42.0.167:8080 to Open Network Stream but VLC can nor play stream audio.
    10. 


    


    What is the reason why the stream can not play on VLC that a Windows laptop even though data is received ?

    


    How can I achieve this ?

    


    Thanks.

    


  • ffmpeg mjpeg encoding not recognized by VLC on other device

    25 juin 2023, par Harsh Kumar

    Let me describe the case scenerio first :

    


    I am using RaspberryPi as a USB-UVC gadget to stream a video to a host device connected via USB cable to the Pi .
For this i have a application(may see if you want) which is succesfully streaming the a USB camera live stream using ./uvc-gadget -d /dev/video0 on the Pi side where /dev/video0 is a real USB camera and the rest is just a syntax of application to take the input as some v4l2 capture device.On the Host side i have to just open the VLC and select capture device as the UVC-Camera made by the apllication and play the stream by selcting the MJPG option under the advanced options and only MJPEG format is supported by the application.

    


    So what i thought that is to make a virtual camera device using sudo modprobe v4l2loopback first (/dev/video1 for now ) and then feeding a my Raspberry desktop screen to it using ffmpeg and then feeding this /dev/video1 virtual video capture device to my application as ./uvc-gadget -d /dev/video1.

    


    More graphically,

    


    Desktop screen -> virtual camera -> apllication

    


    But unfortunately i am not getting the desired results given that this service is supported by the appllication (you may refer readme of application) .I get the trival error of 'Your input device can,t be opened ' in VLC when i do the same steps .

    


    Summary ,
I guess i may be doing something wrong for the MJPEG encoding using ffmpeg also ,
Here is the command i am using ,
ffmpeg -probesize 100M -framerate 30 -f x11grab -video_size 1280*720 -i :0.0+0,0 -c:v mjpeg -pix_fmt yuvj422p -f v4l2 /dev/video1.

    


    Also , i checked on raspberry the output of dev/video1 is fine and also tried removing the pix_fmt yuvj422p thinking that it might causing some conflict with color encoding but got the same error.

    


    Will be very thankful if someone can help me figuring out the erorr.
Thanks for your time and patience .