
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (68)
-
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 (7160)
-
PARADISEC catalog for Administrators
11 mai, par silviaScreencast of how a PARADISEC administrator uses the PARADISEC catalog for managing the consistency of metadata and staying on top of uploaded files.
Category : 2
Uploaded by : Silvia Pfeiffer
Hosted : youtubeThe post PARADISEC catalog for Administrators first appeared on ginger’s thoughts.
-
Error : avformat_open_input : Protocol not found : -1330794744
27 octobre 2015, par Lin JuanI am building an android stream player using Vitamio.
Here is my codes :mVideoView = (VideoView) findViewById(R.id.videoView);
path = "https://www.youtube.com/watch?v=vic5gj2qXKg";
mVideoView.setVideoPath(path);
mVideoView.setMediaController(new MediaController(this));
mVideoView.requestFocus();
mVideoView.setOnPreparedListener(new MediaPlayer.OnPreparedListener() {
@Override
public void onPrepared(MediaPlayer mediaPlayer) {
mediaPlayer.setPlaybackSpeed(1.0f);
}
});But it returns ERROR :
avformat_open_input : Protocol not found : -1330794744
error (1, -1330794744)I think this error is related to FFMpeg for Vitamio.
Who can solve this problem ?
Thank you. -
Resque does not find ffmpeg
17 décembre 2012, par d33pikaI am using resque to queue some encoding jobs. I have workers that pick up these jobs and do some transcoding.
The issue issystem "mencoder .."
works fine butsystem "ffmpeg .."
throws not found and the same to withsystem "qt-faststart .."
I installed mencoder usingsudo apt-get install
.
ffmpeg and qt-faststart were built from source.
So mencoder was in /usr/bin and the other two in /usr/local/bin.
So, the next thing I tried was using full path in the system command, that also returned not found.
Then I copied ffmpeg and qt-faststart into /usr/bin.. Still got "Not Found"
My worker code runs standalone but when god runs it, ffmpeg and qt-fasstart fail to execute. Yes, I have god configured to watch resque. Now, I don't know what else to try ! Any ideas ?