
Recherche avancée
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (9500)
-
How to force to work Vitamio on targetsdk more than 23 ?
21 août 2017, par Alex D.I really need to use vitamio player, but i have target sdk 23 (or higher). When i try to use - it say to me
LOAD FFMPEG ERROR: dlopen failed: /.../lib/arm/libffmpeg.so: has text relocations
So, how i can to use this video player on 23 target sdk ?
-
Identify video frame with header 0x82 0x85 0x1c 0xd0 0x03 0x04
16 août 2016, par yuvrajpasiI’m trying to extract video frames from a CCTV recorded video. Most of the videos i came across contains h264 or h263 frames but this particular video has a frame header which is not identifiable by FFMPEG.
00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 82 85 1C D0 03 04 12
I can say for sure this is a frame because this sequence keeps getting repeated throughout the file except that second byte of header(0x85) keeps changing.
This video files plays with its default video player provided by the CCTV manufacturer. i.e. IDIS clip player.
I found this similar issue blog https://spreadys.wordpress.com/2013/11/16/idis-clip-player-warning/ but it wasn’t very helpful. -
RTMP stream in Android using Vitamio with librtmp
8 septembre 2015, par user3774795I need to play some rtmp video in android app. I found solution here. But when my video played more than 1 minutes, I got errors and video stopped.
Code
private String path;
private int streamId;
@Bind(R.id.streamVideoView) VideoView mVideoView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_view_stream);
ButterKnife.bind(this);
setupVideoView();
}
private void setupVideoView() {
path = getIntent().getStringExtra("streamURL");
streamId = getIntent().getIntExtra("streamId", 0);
if (!io.vov.vitamio.LibsChecker.checkVitamioLibs(this))
return;
mVideoView.setVideoPath(path + " live=1");
mVideoView.setBufferSize(2048);
mVideoView.start();
}Errors
D/HybiParser﹕ Creating frame for : [B@53686940 op : 10 err : -1
I/Vitamio﹕ Info (901, 107) D/Vitamio﹕ onInfo : (901, 107)
I/Vitamio﹕ Info (901, 84) D/Vitamio﹕ onInfo : (901, 84)
D/HybiParser﹕ Sending pong !!
D/HybiParser﹕ Creating frame for : [B@53675358 op : 10 err : -1
I/Vitamio﹕ Info (901, 119) D/Vitamio﹕ onInfo : (901, 119)
E/Vitamio[Player]﹕ [h264 @ 0xb8705270] sps_id (32) out of range
E/Vitamio[Player]﹕ [h264 @ 0xb8705270] sps_id out of range
E/Vitamio[Player]﹕ [h264 @ 0xb8705270] non-existing PPS 35 referenced
E/Vitamio[Player]﹕ [h264 @ 0xb8705270] decode_slice_header error
E/Vitamio[Player]﹕ [h264 @ 0xb8705270] no frame !
E/Vitamio[Player]﹕ FFMPEG NATIVE avcodec_decode_video2
E/Vitamio[Player]﹕ [h264 @ 0xb8705270] non-existing PPS 35 referenced
E/Vitamio[Player]﹕ [h264 @ 0xb8705270] decode_slice_header error
E/Vitamio[Player]﹕ [h264 @ 0xb8705270] no frame !
E/Vitamio[Player]﹕ FFMPEG NATIVE avcodec_decode_video2
Please, help me !!