
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (86)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (16597)
-
Upload video that filmed by iPhone [closed]
6 novembre 2012, par user1801625Possible Duplicate :
Rotating videos with FFmpegWhen somebody film a video and upload to my website It appears in the horizontally
How can I make this vertical ? using ffmpeg ?and its only heppend if he film its horizontally.
Sorry for my English
-
WMAV2 and FFMPEG on iPhone
14 avril 2012, par user1333656Recently, I try to decode audio files on iPhone by using ffmpeg.
Most audio formats are decoded properly but WMAV2 isn't.
The decoded file(raw data) can be imported to sound editor like AUDACITY and it is playable but not clear and different with the original track.
Is this related to ARM floating point ???Someone said VBR WMAV2 could cause this kind of prob.
Can any body give me any clue for this prob ??- IOS 5.1
- XCODE 4.3.1
- OSX 10.7.3
- ffmpeg 0.10.1
configure options
./configure \ —extra-ldflags=-L/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhon eOS5.1.sdk/usr/lib/system \ —disable-doc \ —disable-ffserver \ —enable-cross-compile \ —arch=arm \ —cpu=cortex-a8 \ —target-os=darwin \ —enable-neon \ —cc=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc \ —as='gas-preprocessor.pl /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc' \ —sysroot=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS5.1.sdk \ —extra-cflags='-arch armv7 -mfpu=neon' \ —extra-ldflags='-arch armv7 -mfpu=neon' \ —enable-pic
-
iPhone camera live steaming
15 juin 2012, par Inder Kumar RathoreI have downloaded ffmpeg lib file and complied it for armv7. I added ffmpeg lib files in my project successfully. i am able to get iphone camera live streams using AVFoundation.
Now the problem is how will i convert iphone camera streams output as a input of ffmpeg for decode ? Check my code
- (void)captureOutput:(AVCaptureOutput *)captureOutput didOutputSampleBuffer:(CMSampleBufferRef)sampleBuffer fromConnection:(AVCaptureConnection *)connection {
CMBlockBufferRef bufferData = CMSampleBufferGetDataBuffer(sampleBuffer);
size_t lengthAtOffset;
size_t totalLength; char* data;if(CMBlockBufferGetDataPointer(bufferData, 0, &lengthAtOffset, &totalLength, &data ) != noErr )
NSLog(@"error !") ;
Kindly suggested me which function of ffmpeg lib is used for decoding and how will i put
CMBlockBufferRef
as a input of this ??Thanks