Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (61)

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

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

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

  • Improve ffmpeg CPU usage by compromising quality

    29 septembre 2016, par Hardik Juneja

    I am using FFMpeg for screen capturing.
    I am looking for a screen capturing tool that will run on 1000 of VMs (windows and mac).The VMs have limited CPU (1 core) and 2GB ram and No GPU.

    Currently I invoke ffmpeg with

    ffmpeg  -y -framerate 8 -f dshow -f gdigrab -i "desktop"  -c:v libx264  -crf 0 -preset ultrafast -threads 0 temp.mkv

    I am using gdigrab to capture screen ? Is there any better options that might reduce cpu usage ? or changing the encoder or format ?

    I am aiming for 4-5% reduction in CPU usage.

    Thanks in advance

  • FFMPEG - HLS files for more than 150 cameras

    1er juin 2020, par Lucas

    I'd like to know if someone has tried to generate HLS files using FFMPEG for more than 150 cameras in the same computer / server.

    



    I tried with 13 cameras and it consumed a huge memory from the computer (windows 10 without a video board). this is the command that I used :

    



    ffmpeg -i  rtsp:// -g 60 -hls_time 2 -movflags frag_keyframe+empty_moov -f mp4 .m3u8

    



    Is this a good idea using ffmpeg for this purposal or there is another way to handle multiple cameras to generate hls files ?

    



    Thanks in advance.

    


  • Video files conversion/transcoding Google App Engine

    15 août 2013, par Vasilis

    I want to start a cloud computing project with the simple task to :

    1. Receive uploaded video files
    2. Do some transcoding / converting to them
    3. Allow user to download / stream the generated file

    I was thinking ffmpeg as an external command line tool integrated in a Java/Google App engine Application. Since it was fairly hard to be assured about the limitations of the framework, can someone tell me if this is feasible ?

    Thank you in advance !