Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (26)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

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

  • How to capture ffmpeg output in rails ?

    18 août 2019, par HelloWorld

    I’m running a ffmpeg command to try to get the duration of a video file, the command is as follows...

    system('ffmpeg -i C:\Users\example\Desktop\video9.mp4 -f ffmetadata')

    When I run that line it outputs a lot of info to the rails console, including duration. But how would I capture that info so I can split it and grab the data I need ? (I’m doing this inside a rails controller)

    When I run something like this...

    metadata = system('ffmpeg -i C:\Users\example\Desktop\video9.mp4 -f ffmetadata')
    puts metadata

    All it returns is false.

  • ffmpeg - No NVENC capable devices found

    19 août 2019, par Srikanth Bandaru

    I am having difficulties in using the NVEnc capabilities of my RTX2070 on a Windows 10 machine. I’ve used "media-autobuild_suite" to compile FFmpeg and other libraries for my machine.

    I’ve updated my drivers to version 431.70 and I’ve also installed CUDA Toolkit 10.1

    hevc_nvenc is working fine

    ffmpeg -hwaccel cuvid -i output/frames/%6d.png -c:v h264_nvenc -preset slow -tune animation -r 30 -pix_fmt yuv420p output.mp4

    But h264_nvenc is throwing the below error

    No NVENC capable devices found.

  • ffmpeg - How do I capture AND rotate a video at the same time ?

    21 août 2019, par A R

    I need to record video from a USB camera using ffmpeg. The issue is that the camera is upside down and can’t be repositioned, so I have to rotate 180°.

    So far I’m using this command to capture :

    ffmpeg -framerate 30 -video_size 1280x720 -t 00:58:00 -i /dev/video0 output.mp4

    And then I rotate it using this other command :

    ffmpeg -i output.mp4 -vf "rotate=180*(PI/180), format=yuv420p" -metadata:s:v rotat=0 -codec:v libx264 -codec:a copy ROTATED_output.mp4;

    Both commands are working perfeclty but it takes me twice the time. Is it possible to capture with the filter enabled so that the frames are rotated before being saved the first time ?