Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (61)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

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

  • How to extract attachment from mkv file with ffmpeg (dump_attachment command not working)

    31 octobre 2015, par Anna K.

    This is the command that I’m running through nwjs :

    ffmpeg -dump_attachment:t:4 C:\nw\files/test.jpg -i E:\video/test.mkv

    From their docs here http://ffmpeg.org/ffmpeg.html#Main-options looks like it’s right

    But I get the error "At least one output file must be specified". I don’t understand why because It’s clearly specified in the command :(

    Any help please ?

    I tried running the same command in the Windows command line and the same error appears...


    I found out that this command :

    ffmpeg -i E:\video/test.mkv -map 0:4 -c copy C:\nw\files/test.jpg

    does extract the attachment, but the ffmpeg process does not close !

    If I run the same command in the Windows shell it prints to the screen "press [q] to quit" or something, which doesn’t work because I have to press ctrl+c twice to quit, and then I get some error about reading from the mkv. But when I look in the files directory I see the attachment there

  • tools/python : add script to convert TensorFlow model (.pb) to native model (.model)

    13 juin 2019, par Guo, Yejun
    tools/python : add script to convert TensorFlow model (.pb) to native model (.model)
    

    For example, given TensorFlow model file espcn.pb,
    to generate native model file espcn.model, just run :
    python convert.py espcn.pb

    In current implementation, the native model file is generated for
    specific dnn network with hard-code python scripts maintained out of ffmpeg.
    For example, srcnn network used by vf_sr is generated with
    https://github.com/HighVoltageRocknRoll/sr/blob/master/generate_header_and_model.py#L85

    In this patch, the script is designed as a general solution which
    converts general TensorFlow model .pb file into .model file. The script
    now has some tricky to be compatible with current implemention, will
    be refined step by step.

    The script is also added into ffmpeg source tree. It is expected there
    will be many more patches and community needs the ownership of it.

    Another technical direction is to do the conversion in c/c++ code within
    ffmpeg source tree. While .pb file is organized with protocol buffers,
    it is not easy to do such work with tiny c/c++ code, see more discussion
    at http://ffmpeg.org/pipermail/ffmpeg-devel/2019-May/244496.html. So,
    choose the python script.

    Signed-off-by : Guo, Yejun <yejun.guo@intel.com>

    • [DH] .gitignore
    • [DH] tools/python/convert.py
    • [DH] tools/python/convert_from_tensorflow.py
  • Use ffmpeg to assess media quality recursively and output to a file

    6 septembre 2021, par JD71

    Would anyone mind telling me how to use ffmpeg recursively to scan my collection, assess the video quality and export all of the output data to a file ? I've searched quite a bit on the web and there have been some close to what I'm looking for but not exactly. If I should be using something else, I'm open to suggestions as well.

    &#xA;

    Thank you in advance for any assistance you can provide !

    &#xA;

    J

    &#xA;