
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (25)
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (3923)
-
RTMPE FFMPEG on Linux [on hold]
31 août 2015, par user3317118I’m getting download on Windows but on Linux can not, gives this error.
[![enter image description here][1]][1]bebetoalves: ~/Web $ ffmpeg -f concat -i ep.txt -codec copy theroyalrangers.mkv
ffmpeg version 2.7.2 Copyright (c) 2000-2015 the FFmpeg developers
built with gcc 4.8 (Ubuntu 4.8.2-19ubuntu1)
configuration : —disable-yasmlibavutil 54. 27.100 / 54. 27.100
libavcodec 56. 41.100 / 56. 41.100
libavformat 56. 36.100 / 56. 36.100
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 16.101 / 5. 16.101
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.100 / 1. 2.100[concat @ 0x1bf4260] Impossible to open ’rtmpe ://viacomnickstrmfs.fplive.net/viacomnickstrm/gsp.alias/me
diabus/kids.com/2015/08/26/11/22/23884690/HDXPR510A1_884690_5801915_1280x720_3500_h32.mp4’ep.txt : Protocol not found
bebetoalves : /Web $ -
avformat_find_stream_info not return on Linux
23 novembre 2015, par yuan tianI want to fetch the camera video stream on both windows and linux.The code goes everything well with windows.But when I transplant it to Linux,function avformat_find_stream_info can Not return !
bool VideoFetcher::enumCamera(){
for (int i = 0; i<10; i++){
AVInputFormat *pInputFormat = av_find_input_format(
#ifdef __WIN32
"dshow"
#elif __linux
"v4l2"
#else
""
#endif
);
assert(pInputFormat);
#ifdef __linux
char str[128];
sprintf(str, "/dev/video%d", i);
#endif
AVDictionary* dictionary = NULL;
//av_dict_set(&dictionary, "video_size", "640x480", NULL);
//av_dict_set(&dictionary, "framerate", "30", NULL);
if (avformat_open_input(
&this->cameraFormatContext,
#ifdef __WIN32
(std::string("video=")+thg-¬>getCameraName()).c_str(),
#elif __linux
str,
#else
""
#endif
pInputFormat, &dictionary)
< 0)
{
Log("Error : Couldn't open the camera\n");
}else{
return true;
}
}
return false;
}
assert(avFormatContext);
// int streamError;
auto streamError = avformat_find_stream_info(avFormatContext, NULL);
//the function can not return !
printf("findcodec1\n");
if (streamError< 0){
throw StreamErrorException();
} -
Problem to convert Mp4 to MPEG DASH with FFMPEG codec Vp9 in linux
4 mars 2020, par Sean Pribadii need to convert mp4 to mpeg Dash and stream .Mpd with dash.js. everything looks fine on windows, but there are trouble when i generate Mpd in linux.
Step by step in windows :
1. runffmpeg -y -i video.mp4 -map 0:0 -map 0:0 -map 0:1 -c:v libvpx-vp9 -b:v:0 800k -b:v:1 200k -s:v:1 320x170 -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -use_timeline 1 -use_template 1 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash config.mpd
- stream config.mpd, init, and chunk file with dash.js player.
everything work when i run ffmpeg on windows
when i ran on linux :
1. runffmpeg -y -i video.mp4 -map 0:0 -map 0:0 -map 0:1 -c:v libvpx-vp9 -b:v:0 800k -b:v:1 200k -s:v:1 320x170 -bf 1 -keyint_min 120 -g 120 -sc_threshold 0 -b_strategy 0 -use_timeline 1 -use_template 1 -adaptation_sets "id=0,streams=v id=1,streams=a" -f dash config.mpd
no error and everything looks good. But when i stream with dash.js.
- stream with dash.js player
when i stream config.mpd with dash.js player, there are infinity request enter image description here
what i have tried :
1. change init-stream build by linux with init-stream build by windows [Work]
2. change codec to libx264 [also work in linux]the problem is just convert video to MPEG dash with webm codec (vp8/Vp9) in linux
- stream config.mpd, init, and chunk file with dash.js player.