Recherche avancée

Médias (91)

Autres articles (15)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3393)

  • How to use ffmpeg in nodejs to add hard subtitles in the video ?

    22 septembre 2021, par Pratyay Saha

    The subtitles' font, color and size should be configurable.
Could anyone please help to do the above mentioned problem in NodeJS ?

    


  • How to Include Non-Python Dependency in a Python Package Using PyProject.toml ?

    5 mai 2023, par MillerTime

    I'm developing a Python package that requires the package ffmpeg. It's automatically installed on my platform, linux, but I'd like to make this package available for other platforms as well. I'm using a pyproject.toml file to include metadata and Python dependencies, but I don't know how to add dependencies that aren't Python packages. Even if pip isn't able to install them automatically, I'd like it to give a message to the user upon instilation dictating that ffmpeg is required.

    


    [build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "myproject"
version = "1.0"
dependencies = [
    "python-package-one",
    "python-package-two",
    "python-package-three"
]

[tool.setuptools]
packages = [
    "myproject",
    "myproject.subpackage"
]


    


    I had found a python library called pyffmpeg that provided ffmpeg binaries, but it has weird failures and is unreliable, so I'm moving away from it. My question is, how can I include ffmpeg as a dependency ? Alternatively, I'd like to know about any other Python packages that ship with ffmpeg already installed, like the one I tried, although the other solution is my preference. Thanks very much !

    


  • how to hard encode with srt subtitle

    13 novembre 2012, par user1777711

    I actually tried the following

    ffmpeg -i "video.avi" -i "video.srt" -vcodec x264 -acodec aac "video.mp4" -newsubtitle but it doesn't work. sort of like the subtitle doesn't appear.