
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (37)
-
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 -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (4724)
-
Can ffmpeg create folder by itself in windows ?
20 octobre 2022, par ThanhPhanI'm recording RTSP stream from camera into mp4 files in Windows machine and I want to save files in separate folder by day using
strftime
option (name format likeD:/Video/YYYY-MM-DD/
). I really want to know that does ffmpeg have ability to create folder by itself or do I have to create it by external programs ?


For example, I want to use ffmpeg command like below :



ffmpeg -rtsp_transport tcp -i \
 -f segment -strftime 1 -segment_time 01:00:00 -segment_atclocktime 1 \
 -segment_clocktime_offset 30 -segment_format mp4 \ 
 -an -vcodec copy -reset_timestamps 1 \
 D:/Video/%Y-%m-%d/record_%H_%M_%S.mp4



-
python suggests ffmpeg installation when it is installed
17 janvier 2021, par FNTEI have a problem related to the bar_chart_race python package. I have installed ffmpeg but when I execute my code, I get :


You do not have ffmpeg installed on your machine. 
Download from here: https://www.ffmpeg.org/download.html.



I know that I have used this package before and it was all good. I have installed ffmpeg version :


ffmpeg -version
ffmpeg version 4.2.3 Copyright (c) 2000-2020 the FFmpeg developers
built with gcc 9.3.1 (GCC) 20200523



Do you know what I can do ? I have bin folder in path.


-
How to SRC files from S3 bucket
9 mai 2019, par JayThis code works perfectly on my local machine but I would like to move it to AWS Lambda
I have already uploaded ffmpeg as a binary dependency to the function layer
import subprocess
p = subprocess.call(
'ffmpeg -r 1 -loop 1 -i "./ep1.png" -i "./ep1.mp3" -acodec copy -r 1 -shortest -vf scale=1280:720 ep1.flv', shell=True)Question is How do I replace
"./ep1.png"
and
"./ep1.mp3"
as an understandable path for the ffmpeg command
This is documentation I found from boto3 but I’m not sure how to implement it
s3 = boto3.client('s3')
s3.download_file('BUCKET_NAME', 'OBJECT_NAME', 'FILE_NAME')Let me know if I’m heading in the right direction, after this step I would use boto3 to upload ep1.flv to an output S3 bucket