
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (28)
-
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 (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (5017)
-
Apply Loop for Subprocessing Call FFMPEG in Python
25 novembre 2019, par rayyarsuppose I have a audio mp3 file with length 00:04:00 (240 seconds). I want to extract parts of said file each within range 2 seconds, so it would be :
File_01 00:00:00-00:00:02, File_02 00:00:02-00:00:04, File_03 00:00:04-00:00:06 ... File_120 00:03:58-00:04:00.
I am using python, call module subprocess to run ffmpeg function. What I did, I simply put it in a loop like this :
count = 0
count2 = 2
count3 = 1
while count2 <= audio_length:
ffmpeg = 'ffmpeg -i input.mp3 -c copy -ss %d -to %d output%d.wav' % (count, count2, count3)
subprocess.call(ffmpeg, shell=True)
count = count + 2
count2 = count2 + 2
count3 = count3 + 1However, the subprocess part took a long time and it seems stucked. I’ve searched some insights, but i haven’t found any that mentions about looping. Any help appreciated.
-
ffmpeg - extract thumbnail from middle of clip duration
13 février 2013, par codeloveHi I am using the following ffmpeg command to extract a thumbnail from the beginning of a clip with ffmpeg :
/usr/local/bin/ffmpeg -ss 00:00:1 -i $fileName.flv -s 150x100 -vframes 1 $fileName.jpg
Is it posible to extract a thumbnail from the middle of the clips duration with ffmpeg alone ?
Each clip is of a different length.
If ffmpeg does not supply this option, I know it is possible to get the clips duration into this type of format 00:00:01.26 and then I suppose I can divide it in half, but I am not sure if this is the best approach, and I am also (embarrassed to say) not entirely sure how to divide that format in half with PHP.
Example code would be appreciated.
Thank you.
-
RTMP proxy to crop original video and send it to another RTMP server
7 octobre 2020, par Nicola PeluchettiI need to crop the video from an RTMP stream and send it to another RTMP server which always change. My understanding is that I should use
nginx-proxy
andffmpeg
, can anybody help me on how to set it up ?

I suppose that i need to send the stream to an endpoint like
/stream/:stream-key/:next-server-ip
process the stream with ffmpeg and then send it to the :next-server-ip, what language should I use in the backend for this ?