
Recherche avancée
Autres articles (105)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (12523)
-
How to find currently streaming file in ffmpeg stream that uses a file list
27 février 2021, par DigitalDisasterI am using ffmpeg to stream to an RTMP server. I am using the option to provide ffmpeg a text file with a list of files to stream. My file looks like this :


ffconcat version 1.0
file 'stream_file1.flv'
file 'stream_file2.flv'
file 'stream_file3.flv'



It loops through these files while streaming. Is there a way to programmatically find out when ffmpeg switches between each file ? Either from ffmpeg dumping some logs that I can injest, or by using python to check the state of the stream every second ?


-
lavf/mov.c : Don't correct edit list start to zero, when we can't find a frame before...
14 novembre 2017, par Sasi Inguvalavf/mov.c : Don't correct edit list start to zero, when we can't find a frame before edit list start.
After c2a8f0fcbe57ea9ccaa864130f078af10516c3c1 this can happen on normal edit lists starting on a B-frame.
Signed-off-by : Sasi Inguva <isasi@google.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Add file name to video (drawtext) - Cannot find a valid font for the family Sans Error Ffmpeg [duplicate]
18 mars 2019, par Oli ShingfieldThis question already has an answer here :
I have a folder with a couple of short videos in, I would like to add the file names of the videos in the video in the bottom right corner while converting them from mov to mp4. I have tried using :
@echo off
set "INPUT=E:\Users\Oli Shingfield\Documents\Projects\v1.3.1\downloads3"
for %%a in ("%INPUT%\*.mov") do (
ffmpeg -i "%%~a" -vf drawtext=text="%%~na":x=105:y=120:fontfile="E:\Users\Oli Shingfield\Documents\Projects\v1.3.1\downloads3\impact.ttf":fontsize=25:fontcolor=white -b:v 1M -r 60 -b:a 320k -ar 48000 -crf 17 "%%~na.mp4"
)
pausebut I am getting the error :
[Parsed_drawtext_0 @ 000002548db70e00] Cannot find a valid font for the family Sans
[AVFilterGraph @ 000002548cd00a20] Error initializing filter 'drawtext' with args 'text=RP AS A WHOLE:x=105:y=120:fontfile=E:UsersOli_ShingfieldDocumentsProjectsv1.3.1downloads3impact.ttf:fontsize=25:fontcolor=white'
Error reinitializing filters!
Failed to inject frame into filter network: No such file or directory
Error while processing the decoded data for stream #0:0
[aac @ 000002548be61ae0] Qavg: 65536.000
[aac @ 000002548be61ae0] 2 frames left in the queue on closing
Conversion failed!It seems as though it can’t find the font file even though it’s in the same location and I am specifying the exact file path.
Has anyone got any ideas ? I’m baffled.
Thanks !
Oli