
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (105)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (6856)
-
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
-
Revision 86a9dec73c : clean up bw, bh many structures use bw and bh and they have different meanings.
23 juillet 2013, par Jim BankoskiChanged Paths :
Modify /vp9/common/vp9_common_data.c
Modify /vp9/common/vp9_common_data.h
Modify /vp9/common/vp9_enums.h
Modify /vp9/encoder/vp9_bitstream.c
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_encodemb.c
Modify /vp9/encoder/vp9_encodemv.c
Modify /vp9/encoder/vp9_rdopt.c
clean up bw, bhmany structures use bw and bh and they have different meanings. This cl
attempts
to start this clean up and remove unneccessary 2 step look up log and then
shift operations...also removed partition type multiple operation code in bitstream.c.
Change-Id : I7e03e552bdfc0939738e430862e3073d30fdd5db
-
How to create app like snapchat in react-native ?
6 octobre 2016, par Takamichi TsutsumiI’m trying to create an app like snapchat with React Native.
currently
- use react-native-camera to take video
- upload it to webserver with text info
- attach the text to video with ffmpeg on webserver
- stream that video using react-native-video
I want do step 2 and 3 in native app.
Does anyone have nice solution ?