
Recherche avancée
Médias (16)
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (30)
-
À propos des documents
21 juin 2013, parQue faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
Document bloqué en file d’attente ?
Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...) -
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)
Sur d’autres sites (5898)
-
Android 6.0 UnsatisfiedLinkError : dlopen failed has text relocations
20 décembre 2016, par Jerikc XIONGThere are many links to discuss the issue :
libavcodec.so : has text relocations
https://github.com/wseemann/FFmpegMediaPlayer/issues/64
I’m confused that i got the error on some devices found by fabric, but not the whole Android 6.0.
I use the ijkplayer :
- ijk version : 0.4.4.1
- ffmepg version : N-82274-g34aeb5d
- ndk version : r10e
- computer info : macOS Sierra, version 10.12.1
How to explain that ?
-
How to use NSProcessInfo's operatingSystemVersion property in place of gestaltSystemVersionMinor and gestaltSystemVersionBugFix
28 octobre 2016, par Michael WhiteacreNewbie here, but longtime frequenter of this essential resource.
Using :
MacBook Pro (Retina, 13-inch, Early 2015).
Processor : 3.1 GHz Intel Core i7
Memory : 16 GB 1867 MHz DDR3
Running Yosemite 10.10.5I’m attempting to compile my own Perian- and FFmpeg-based FFusion.component (for Quicktime), for 10.11 using Xcode 7.2.1, and in this relatively simple project, as in others, am trying to move away from Gestalt. The original FFusion-RJVB.xcodeproj I’m employing is Xcode-3.2 compatible.
I have yet to find a clear, definitive solution to what must appear a painfully simple problem to you all. Here is the Gestalt version :
`#if TARGET_OS_MAC
static int GetSystemMinorVersion()
{
static SInt32 minorVersion = -1;
if (minorVersion == -1)
Gestalt(gestaltSystemVersionMinor, &minorVersion);
return minorVersion;
}
static int GetSystemMicroVersion()
{
static SInt32 microVersion = -1;
if (microVersion == -1)
Gestalt(gestaltSystemVersionBugFix, &microVersion);
return microVersion;
}
#endif`
I’ve tried what seems like endless variations of NSProcessInfo i.e.([[NSProcessInfo processInfo] respondsToSelector:@selector(operatingSystemVersion)])
but I’m afraid I’m not formatting it correctly to achieve my ends. It just hasn’t ’clicked’ in my head yet, so Im hoping someone can give me a push when I see the difference between the gestalt version, my stumbling attempts, and the correct way.
Many thanks.
-
How to capture a timed screen recording on a Mac with ffmpeg
28 septembre 2016, par wetjoshI’m on a Mac with MacOS Sierra installed. I’ve installed ffmpeg with homebrew. I list my devices via :
ffmpeg -f avfoundation -list_devices true -i ""
which returns :
[AVFoundation input device @ 0x7fc2de40e840] AVFoundation video devices:
[AVFoundation input device @ 0x7fc2de40e840] [0] FaceTime HD Camera
[AVFoundation input device @ 0x7fc2de40e840] [1] Capture screen 0
[AVFoundation input device @ 0x7fc2de40e840] AVFoundation audio devices:
[AVFoundation input device @ 0x7fc2de40e840] [0] Built-in MicrophoneI don’t need audio so I start my 5 second screen recording via :
ffmpeg -f avfoundation -t '5' -i '1' test.mov
It creates an mov file in the working directory but doesn’t stop after 5 seconds. In fact, I can’t even stop the recording as it suggests by pressing ’q’. Ctl-C doesn’t work either, and I am left with force quitting via Activity Monitor. I’ve tried this same command but using device 0 (FaceTime camera) and it stops after 5 seconds.
If someone can solve that riddle, my next question is how can I watch the newly created file in quicktime (I’m thinking I’ll need to encode or decode or something) because even the FaceTime video file would not open in QuickTime. It just says "The document could not be opened". It does, however, open with VLC.
UPDATE : I’ve tried this on an older OS (Yosemite) and got the same results (thought it might be the new OS that broke it).