Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (27)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

  • how to use cgroups in php exec

    13 juillet 2020, par Skora

    I'm trying to use cgroups in php

    


    And I did the following :

    


    sudo cgcreate -g cpu:/www-data
sudo cgset -r cpu.cfs_period_us=1000000 www-data
sudo cgset -r cpu.cfs_quota_us=100000 www-data


    


    And when I do use it on ffmpeg via the terminal it works fine

    


    But when I used it in php like :

    


    exec("cgexec -g cpu:www-data ffmpeg -i music.mp3 -ac 1 -map 0:a -acodec libopus -b:a 64k -vbr off -ar 24000 music.ogg");


    


    does not work

    


    Can it be used with exec ?

    


  • How to build ffmbc with static libraries on Mac

    27 janvier 2013, par Brainware

    I can build ffmbc (similar to ffmpeg) and it runs fine from the terminal. But, when I try to run it from MAMP it loads different dynamic libraries and crashes. What I would really like to do is have ffmbc load the same libraries each time no matter how it's run. Static libraries should do the trick. Another option is to create a Mac app (ffmbc.app) and use package contents. But, I don't know how to do either of these things. An XCode project would probably be best but I can't find one for ffmbc.

    I see people spending days to get things to build on their machines. I don't understand why the linux community makes this so difficult and so fragile. I've been writing apps for over 25 years so I guess I'm not as interested in jumping through hoops like I use to be. ;-)

    Suggestions or advice most appreciated.

  • Flutter Desktop Images Sequences into Video

    8 octobre 2019, par Hari Anugrah

    I am building a Flutter Desktop App (Mainly running for MacOs) that compile a series of images into a stop motion video

    How do I achieve such goal ?

    I’ve used ffmpeg via terminal to do this, but I want to achieve it using Flutter Desktop now.

    I looked into https://pub.dev/packages/flutter_ffmpeg but seems like it doesn’t support desktop

    I looked into dart:ffi but I don’t have enough experience to run ffmpeg command via C to begin with