
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (15)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
List of compatible distributions
26 avril 2011, parThe 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, parThe 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 SahaThe 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 MillerTimeI'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 apyproject.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 thatffmpeg
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 providedffmpeg
binaries, but it has weird failures and is unreliable, so I'm moving away from it. My question is, how can I includeffmpeg
as a dependency ? Alternatively, I'd like to know about any other Python packages that ship withffmpeg
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 user1777711I 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.