Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (47)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

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

  • Faster frame extraction than ffmpeg

    23 janvier 2013, par Ben Ford

    I have a video analytics program that processes assorted frames from a video. (Several hours long)
    The video is likely going to be an MP4 but may be other formats going forwards.

    At the moment, I have a C# wrapper around an ffmpeg call to extract an individual frame at the requested time. (I'm using the ffmpeg.exe binary. Not the libraries directly)
    At the moment, this all works. But it's slow. Very slow.

    I've found ways to improve the speed by storing the extracted frames in a ramdisk while they're being processed. Changing the stored image format etc...

    I just wanted to check if anyone could think of any way to pull individual frames out. At split-second accuracy.
    I know this is probably possible with DShow etc... I went straight to FFMPEG as I've used it before. But if DShow is likely to be faster I'll gladly change !

  • Bat Command of FFMPEG [closed]

    7 juillet 2020, par Foloja

    Good day dear all users,

    


    I would like to straight to the problem.
I have a folder in D :\Data\Movie as input folder and D :\Data\PabloRojas as output folder .

    


    i want to process all the videos inside it with FFMPEG Command below ;
ffmpeg -vsync 0 –hwaccel cuvid -c:v h264_cuvid –resize 640x480 -i "input" -c:a copy -c:v h264_nvenc -b:v 5M "output"

    



    


    The question is, what is the bat command that automatically process my files in input folder with my FFMPEG Command and put it in output folder ?

    


    ==========================================================================

    


    Would be very nice of you if you can help me.

    


    Best Regards,
Pablo Foloja Rojas

    


  • Using ffserver to do UDP multicast streaming

    20 novembre 2015, par Catherine MacInnes

    Here’s the deal. I’m working with IPTV hardware and I need to output a bunch of demo streams. These are MPEG2 transport stream that need to be straight up UDP Multicast streams. I have an ffmpeg command that works great :

    ffmpeg -re -i /Volumes/Data/DemoVideos/GRAILrpsp.ts -acodec copy -vcodec copy -f mpegts udp://239.192.1.82:12000[ttl=1,buffer_size=2097157]

    What I would like to do is convert this into an ffserver config file instead of having to start a whole bunch of ffmpeg streams and then figuring out how to get them to loop. I’m sure I can do it with the right scripting but what a pain, isn’t that what ffserver is for ? But I can’t find any documentation on doing UDP streaming using ffserver. You can set a multicast address and port but it goes to RTP which this hardware isn’t designed for. Any help would be greatly appreciated.