
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 (70)
-
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 (...)
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (8749)
-
FFmpeg command-line on Android
29 septembre 2013, par Gonzalo SoleraI´m trying to use this ffmpeg command line on Android :
ffmpeg -i /sdcard/DCIM/video.mp4 -s 480x320 /sdcard/output.mp4
I have the executable file of ffmpeg (on this path : /data/local/tmp/ffmpeg/ with chmod 751), and as I read, I´m trying to invoke it using :
Runtime.getRuntime().exec("/data/local/tmp/ffmpeg -i /sdcard/DCIM/video.mp4 -s 480x320 /sdcard/output.mp4");
But I´m not getting any result after this calling, so I tried the same command but using the android terminal and I´m sure ffmpeg works because I ´m getting many outputs like video data. But it doesn´t do the action I want, I´m getting this message :
Unable to find a suitable output format for '/sdcard/output.mp4'
I don´t have any idea about what it can be the issue...
Thanks for help !! -
Creating m3u8 file that points to other m3u8 files
11 mai 2015, par amcneilI’m looking to create a m3u8 file that points to other m3u8 files based on bandwidth, something like this
#EXTM3U
#EXT-X-VERSION:4
#EXT-X-TARGETDURATION:7
#EXT-X-MEDIA-SEQUENCE:4
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=500000,RESOLUTION=480x270
480x270.m3u8
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1000000,RESOLUTION=640x360
640x360.m3u8
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=2000000,RESOLUTION=1280x720
1280x720.m3u8
#EXT-X-ENDLISTI was hoping to be able to do this using ffmpeg but I can’t seem to find any information on doing it that way. This may be the wrong way to do it so if anyone can point me in the right direction that would be greatly appreciated.
-
Android ffmpeg api calls from command line
7 mai 2015, par EugeneSince there is no documentation on ffmpeg api, I suggested to find a little help here.
Is it possible to know what api used in accordance to command line calls ?