
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 (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (7111)
-
How do you determine the end of the file in a stream containing multiple streams ? (nodejs)
26 décembre 2019, par DanielkentI would like to split an audio file into multiple segments using ffmpeg in an AWS Lambda (NodeJS) function.
Due to the limitations of (and to optimise for) the lambda environment I would like to stream the audio into ffmpeg, perform the split on the audio file in the stream and then stream the now multiple smaller files out to s3.
After doing some research I have found the AWS S3 SDK doesn’t support multiple file uploads in one stream. I could resolve this by finding the end of each new segment (file in the output stream) and creating a separate upload to s3.
Is there a way to determine the end of a file in a stream (containing multiple files) ?
(without saving it to the file system or loading it to memory).
I have searched around and I can’t seem to find an answer.
-
How to determine if a ffmpeg subprocess has fallen
9 avril 2020, par TiHanI have an issue



I want to create a new ffmpeg process using subprocess.popen
find out his pid
and in the body of a python program to see if the process is alive or not



args = shlex.split ('ffmpeg -i rtsp: //192.168.1.68: 8554 / mystream -f segment -strftime 1 -segment_time 5 13_REG1_CHANNEL3_% Y-% m-% d_% H-% M-% S-% s .mp3 ')
print (args)
proc = subprocess.Popen (args, stdout = subprocess.PIPE)
ch_pid = proc.pid
print (proc.pid)
proc.wait ()
print (proc.communicate ())
while (1):
 if (os.system (str ('kill -0 {PID}'). format (PID = ch_pid)) == 0):
 print ('proc is alive')
 else:
 break




at while loop i tried to check this process pid via kill -0 pid
this command will return zero if everything is alright and process is running



BUT



IF ffmpeg will fall
there will be no changes



kill -0 pid will continue to returning zero code that everything is good



What should i do ?


-
Determine FFmpeg codecs available for container
19 juillet 2020, par CasualDemonI am looking to generate lists of supported video / audio / subtitle tracks for each type of container in a particular build of FFmpeg.


For example, I want to avoid errors like
Could not find tag for codec <> in stream #0, codec not currently supported in container


I know I can list available codecs with
ffmpeg -codecs
, and find details about a muxer withffmpeg -h muxer=<muxer></muxer>
likeffmpeg -h muxer=matroska
but that will only show default codecs, not all possible.

Muxer matroska [Matroska]:
 Common extensions: mkv.
 Mime type: video/x-matroska.
 Default video codec: h264.
 Default audio codec: vorbis.
 Default subtitle codec: ass.



Basically I want to run this command across all available muxers to build up a table like wikipedia's format comparison charts that is FFmpeg build specific. This is designed to go in a program that wraps around FFmpeg, and I need to know which formats are valid for each container / file extension per FFmpeg build.


Thanks !