
Recherche avancée
Autres articles (6)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (2145)
-
Cannot play video in TextureView Android
26 octobre 2014, par BilldaI have a problem with playing video on some devices. I am using textureview with mediaplayer, every methods of SurfaceTextureView are called but when I just call mediaPlayer.start(), immediately the listener with completition of playing is called. In log is this error :
E/MediaPlayer﹕ error (1, -2147483648)
When I list log from all applications, I can see some errors and I dont know if it is somehow related http://pastebin.com/rRxxQgdJ
This log is from CyanogenMod with Android 4.3.1 but on some other devices like Samsung Galaxy S3 mini this error is happening.
On my Nexus 4 everything works fine. I’ve tried convert that video with mp4 codec for android H.264 and even with ffmpeg but the result is still the same. I am using TextureVideoView implementation from here :
https://github.com/dmytrodanylyk/video-crop/blob/master/library/src/com/dd/crop/TextureVideoView.javaThanks for any advice
-
Ndk : Button event error Fatal 11 SIGSEGV when video streaming
24 avril 2015, par user3773632I’m using ffmpeg in ndk, make video streaming service.
my problem is that Video streaming when the button is pressed, an fatal 11 SIGSEGV error occurs.
this my source
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.fragment_main);
Log.v("LOG", "CREATE");
mUHSurfaceView = (UHSurfaceView) findViewById(R.id.uhsurfaceview);
bCamera = (Button)findViewById(R.id.camera);
bCamera.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Log.v("CameraButton", "CameraButton");
}
});In ndk using ffmpeg h264 decoding and rgb24 through opengl(GLSurfaceView) screen output.
I don’t know why occur this error i can’t solve error
please help me !my device : Samsung galaxy s4 mini
android : 4.2.2Thanks.
-
failed to run ffmpeg player on android
14 juin 2014, par HogunI get source from AndroidFFmpeg.
and I succeeded to build FFmpegLibrary project and FFmpegExample.
When I installed a app on G2 phone, ran the app well.
but when I installed it on Galaxy S3, the app is killed by failed ffmpeg-neon.so load.I have environments blow,
- Ubuntu 12.04 LTS 64bit
- Android NDK r9d
- Android Toolchain 4.6
- FFmpeg 2.2
06-14 16:22:05.181: D/dalvikvm(26430): Trying to load lib /data/app-lib/com.example.ffmpegbasic-1/libnativetester-jni.so 0x42dbfb58
06-14 16:22:05.181: D/dalvikvm(26430): Added shared lib /data/app-lib/com.example.ffmpegbasic-1/libnativetester-jni.so 0x42dbfb58
06-14 16:22:05.181: D/dalvikvm(26430): Trying to load lib /data/app-lib/com.example.ffmpegbasic-1/libffmpeg-neon.so 0x42dbfb58
06-14 16:22:05.186: A/libc(26430): Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 26430 (ple.ffmpegbasic)and i also try on android toolchain 4.8 but i see the same error.
What do i try now ? Help me please...