Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

Sur d’autres sites (10509)

  • ffmpeg : Generic stream (or file) re-streaming at lower bitrate

    29 novembre 2016, par Christian

    I often find streams on the internet that are high-bitrate only, or video streams that offer no audio-only stream.

    Is there a generic way to tell ffmpeg or ffserver, in my case on a small server, to input a given stream, digest it (eg. x264ify it or even HEVCify it, and convert the audio to AAC+ HEC at a low bitrate) and output
    a) a lightweight low-bitrate version or
    b) an audio-only stream of the ingested stream
    that can be viewed (in my case) by a mobile device that doesn’t have the greatest connectivity ?

    Thanks for any pointers in the right direction.

  • ffmpeg : Generic stream (or file) re-streaming at lower bitrate

    29 novembre 2016, par Christian

    I often find streams on the internet that are high-bitrate only, or video streams that offer no audio-only stream.

    Is there a generic way to tell ffmpeg or ffserver, in my case on a small server, to input a given stream, digest it (eg. x264ify it or even HEVCify it, and convert the audio to AAC+ HEC at a low bitrate) and output
    a) a lightweight low-bitrate version or
    b) an audio-only stream of the ingested stream
    that can be viewed (in my case) by a mobile device that doesn’t have the greatest connectivity ?

    Thanks for any pointers in the right direction.

  • Batch screenshots with FFmpeg

    20 juillet 2017, par cCanuck

    I have this bat file that works with another software and I would like to modify it to work with FFmpeg but I haven’t been able to get the syntax or arguments correct

    I essentially have a series of 1hr videos on an external HDD I want to extract an screenshot every 15mins to folder on my computer. I could do it successfully with FFmpeg from the CMD but not in a bat file.

    @echo off
    pause

    FOR /F "tokens=*" %%A IN ('dir E:\BIW\*.asf /b') DO "c:\Program Files (x86)\FrameShots3\fsconsole.exe" -ms 900000 -width 1920 -height 1080 -filetype JPEG -filename BIW_ -filecounter 0000 "E:\BIW\%%A" "C:\timelapse\BIW\"
    pause