
Recherche avancée
Médias (3)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (112)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (12802)
-
FFMPEG RTMP Streaming to Android Exec
4 octobre 2012, par user1653922I have done in Android using FFMPEG RTMP streaming
As a practical matter, an error is output when the RTMP streaming with Android.
"rtmp :/ / ~ / oflaDemo / test live = 1": No such file or directory
Command execution in Android is as follows.
String [] command = new String [] {"/ directory / ffmpeg", "-vn", "-re", "-i", "\" rtmp :/ / ~ / oflaDemo / test live = 1 \ "" , "-loglevel", "debug", "pipe: 1"};
Process process = Runtime.getRuntime () exec (command, null);Successfully decoded the above command on a FFMPEG on Windows.
I would like you to tell me if it is good How can Android Can I run the above command.
-
fatal Error Issues - jhotovy's version of android-ffmpeg-x264 - github.com/jhotovy/android-ffmpeg.git
3 août 2012, par user1545779The following is the output for issuing
init-submodules.sh
. I keep receiving thiserror:fatal error:
Unable to checkout '15e02184e136e47ecff01bf56aca
The49d8e2646fb4' in submodule path 'Project/jni/ffmpeg'<br />Has anyone run jhotovy's version of halfninja's code successfully so far ? Any help in resolving this issue will be greatly appreciated
My screen output :
gipsyblues@android-general:~/android-ffmpeg$ ./init-submodules.sh <br />
ls: cannot access ./jni/ffmpeg/*: No such file or directory<br />
Submodule 'ffmpeg' (git://git.videolan.org/ffmpeg.git) registered for path Project/jni /ffmpeg'<br />
Submodule 'x264' (git://git.videolan.org/x264.git) registered for path 'Project/jni /x264'<br />
user.name=xxxxxxx <br />
user.email=yyyyyyy <br />
core.repositoryformatversion=0<br />
core.filemode=true<br />
core.bare=false<br />
core.logallrefupdates=true<br />
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*<br />
remote.origin.url=git://github.com/jhotovy/android-ffmpeg.git
branch.master.remote=origin<br />
branch.master.merge=refs/heads/master<br />
submodule.ffmpeg.url=git://git.videolan.org/ffmpeg.git<br />
submodule.x264.url=git://git.videolan.org/x264.git<br />
Initialized empty Git repository in /home/gipsyblues/android-ffmpeg/Project/jni/ffmpeg /.git/<br />
remote: Counting objects: 237417, done.<br />
remote: Compressing objects: 100% (57251/57251), done.<br />
remote: Total 237417 (delta 186957), reused 228690 (delta 179782)<br />
Receiving objects: 100% (237417/237417), 59.89 MiB | 5.22 MiB/s, done.<br />
Resolving deltas: 100% (186957/186957), done.<br />
fatal: reference is not a tree: 15e02184e136e47ecff01bf56aca49d8e2646fb4<br />
Unable to checkout '15e02184e136e47ecff01bf56aca49d8e2646fb4' in submodule path 'Project/jni/ffmpeg'<br />
gipsyblues@android-general:~/android-ffmpeg$ <br />I have successfully run the original halfninja version which is also at
githuib.com/halfninja/android-ffmpeg-x264.<
br> I have searched all over the Internet and i am not finding any reference to this issue. Anyone had any success with that implementation -
Android mp4 Media File Won't play
17 juillet 2014, par LironI had the same problem as here which I thought was because the files (recorded on iOS) were encoded as .mov instead of .mp4.
I then changed the encoding mechanism on my iOS app to encode them as mp4, and I’m still seeing the same problem.
When I load the file with
File videoFile = ...;
videoView.setVideoPath(videoFile.getAbsolutePath());
videoView.start();I get
E/MediaPlayer(2069): error (1, -2147483648)
.When I load the file with the following (from the link above).
Uri uri = Uri.parse(VideoProvider.CONTENT_URI_BASE + Uri.encode(videoFile.getAbsolutePath()));
videoView.setVideoURL(url);
videoView.start();I get this in logcat
07-17 08:05:58.283: W/VideoView(2276): Unable to open content: content://com.companyname.VideoProvider.files.files/%2Fdata%2Fdata%2Fcom.companyname.myappname%2Fcache%2FiX0mXVPxih.mp4
07-17 08:05:58.283: W/VideoView(2276): java.io.IOException: setDataSource failed.: status=0x80000000ffmpeg tells me the following about the media file :
ffmpeg -i media.mp4
ffmpeg version 2.2 Copyright (c) 2000-2014 the FFmpeg developers
built on Mar 26 2014 15:29:01 with Apple LLVM version 5.1 (clang-503.0.38) (based on LLVM 3.4svn)
configuration: --prefix=/usr/local/Cellar/ffmpeg/2.2 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-nonfree --enable-hardcoded-tables --enable-avresample --enable-vda --cc=clang --host-cflags= --host-ldflags= --enable-libx264 --enable-libfaac --enable-libmp3lame --enable-libxvid
libavutil 52. 66.100 / 52. 66.100
libavcodec 55. 52.102 / 55. 52.102
libavformat 55. 33.100 / 55. 33.100
libavdevice 55. 10.100 / 55. 10.100
libavfilter 4. 2.100 / 4. 2.100
libavresample 1. 2. 0 / 1. 2. 0
libswscale 2. 5.102 / 2. 5.102
libswresample 0. 18.100 / 0. 18.100
libpostproc 52. 3.100 / 52. 3.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'media.mp4':
Metadata:
major_brand : mp42
minor_version : 1
compatible_brands: mp41mp42isom
creation_time : 2014-07-17 08:59:24
Duration: 00:00:08.14, start: 0.000000, bitrate: 1084 kb/s
Stream #0:0(und): Video: h264 (Main) (avc1 / 0x31637661), yuv420p(tv, smpte170m), 360x480, 1027 kb/s, 24.46 fps, 29.97 tbr, 600 tbn, 1200 tbc (default)
Metadata:
creation_time : 2014-07-17 08:59:24
handler_name : Core Media Video
Stream #0:1(und): Audio: aac (mp4a / 0x6134706D), 44100 Hz, mono, fltp, 62 kb/s (default)
Metadata:
creation_time : 2014-07-17 08:59:24
handler_name : Core Media AudioAny idea why this file might be failing to load ?
EDIT : Seems that this is mostly an issue when running in the emulator, but on a device I seem to have succeeded it getting it to work if I use a
SurfaceView
andMediaPlayer
instead ofVideoView
.