
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (60)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
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 (...)
Sur d’autres sites (9084)
-
Does a landscape app preview video uploaded iTunes Connect appear in landscape ?
14 février 2018, par JulesThe video I’ve produced as my app preview appears squashed in portrait orientation, when it should be in landscape.
I’ve created the video for my app using...
xcrun simctl io #{device_udid} recordVideo
My app is landscape only.
The video generated needs to be rotate anti-clockwise 90 degrees, to look correct.
Therefore I have rotated the video using ...
ffmpeg -i input.mp4 -strict 1 -metadata:s:v rotate="90" -codec copy output.mp4
and resized the video with ...
ffmpeg -i input.mp4 -filter:v scale=900:1200 -c:a copy output.mp4
I think the video generated by
simctl
may include the orientation and perhaps I have removed this using ffmpeg.I have contacted Apple support, they have sent a specification that videos must meet and to contact them if I still have problems.
However I’ve not sure if my video has the correct orientation, as it plays fine in QuickTime Player. Alternatively, I’m not sure if iTunes Connect has a bug.
EDIT : Here’s the output from ffpmeg https://gist.github.com/Jules2010/e5e0061960728d4d2943ed2afe977e95
-
How to play media using ffmpeg
29 octobre 2018, par yymsAndroid Studio is converting ffmpeg to the current cmd command.
But is there a way to play media through the cmd command ?- Converting : implementation ’nl.bravobit:android-ffmpeg:1.1.5’
-
Player : implementation ’com.github.wseemann:FFmpegMediaPlayer:1.0.4’
-
I have to use ffmpeg to play the media playback at double speed.
-
Retrieving and Saving media metadata using FFmpeg
22 mars 2024, par Rahul PatwaI want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg.



Also is the same thing possible with MediaInfo ?? I know I can get the metadata for individual tracks using MediaInfo, but I would want to automate it ; as in whenever a new media file is found, read its metadata and then store it in a txt/xml file.



Or, is there any other tool/utility/API that I can use for this ?