
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 (55)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (7864)
-
ffmpeg how to automatically detect video format
18 mai 2019, par SulliI am trying to download a bunch of videos from youtube :
while read url channel
do
step=`youtube-dl -f 'bestvideo' -g $url`
ffmpeg -i "$step" -ss 00:00:10.00 -t 00:00:01.00 -c copy frames/"$channel".mp4;
done < urls.csvThe problem is that the "bestvideo" format is not always the same, it can be mp4, webm, mov, and so I can’t harcode the output format in the ffmpeg command.
Can ffmpeg automatically detect the correct format for the output ? Or is there a format that is always available for a youtube video ?
-
Compile ffmpeg for android statically [duplicate]
1er novembre 2013, par Gonzalo SoleraThis question already has an answer here :
-
FFMPEG on Android
5 answers
I have been using an old version of ffmpeg compiled statically that I downloaded from Internet. I need to compile my own STATIC ffmpeg with the h264 encoder for android, but I´m a bit noob in this and I´m not sure in how to do that. I have read some tutorials but they weren´t so useful... I would be very grateful if somebody could explain me step by step how to do that. Thanks !!
-
FFMPEG on Android
-
Use ffmpeg convert mp4 to hls m3u8 and reserver audio
9 juillet 2019, par user3678248I have a mp4 file, input0.mp4. Now I want to convert it to a HLS and only reserver audio with one step. Now I can realease it with two steps as follows. First converting it to a mp3 file, second slicing mp3 file to m3m8.
ffmpeg -i input0.mp4 input0.mp3
ffmpeg -i input0.mp3 -c:v libx264 -c:a aac -strict -2 -f hls -hls_list_size 0 output.m3u8If I want to use ffmpeg to realease it with one step, how can I do it.