
Recherche avancée
Autres articles (47)
-
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 ) (...) -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)
Sur d’autres sites (3512)
-
How to build a daemon to encode video files on S3 ?
4 avril 2013, par Yuval CohenI am interested in running a daemon to go over user uploaded video files and encode them in an optimal format (and add some watermarks).
I was considering services such as Zencoder, Encoding.com, Amazon's encoding service but some lack overlaying capabilities and some are just too expensive for our (big) volumes.
I want to build a daemon that encodes videos that are located on S3 once users upload them.
The solution I thought of would be Python Heroku servers using Celery for a task queue to keep track of the encoded files and ffmpeg to do the actual work. However, I ran into troubles compiling ffmpeg for Heroku (with libass support, so the basic ffmpeg bins aren't enough).
What approach/technology stack would you consider for this mini-project ?
Thanks !
Yuval -
How I can run cloud apps in my mobile phone [closed]
17 mai 2022, par DeepakI want to create an Android application on my own. I want to run a cloud running app on my mobile phone. Here is the thing :


The super application will be deployed in the Play store. I know the super app concept but the does not apply here because we can not ask anyone to create the mini framework of their application.


- 

- I have a server that is running Android OS
- I want to run the application on my mobile phone which is actually running on my server. I want to stream that and play with that application without any installation.






Any suggestions on what I shall use :


- 

- to play the app ?
- To control the cloud app from my Android mobile ?






-
Error in FFMPEG/LIBAV audio_decode example for aac decoding
23 mai 2017, par Prashant RaviI am trying to do aac decoding using the examples provided by FFMPEG/LIBAV. I modified the example as follows :-
int main(int argc, char **argv)
{
.......
/* find the MPEG audio decoder */
codec = avcodec_find_decoder(AV_CODEC_ID_AAC);
if (!codec) {
fprintf(stderr, "codec not found\n");
exit(1);
}
.......
return 0;
}I changed the decoder type to "AV_CODEC_ID_AAC" and recompiled the examples.
Once I ran the example for decode audio with an example aac audio file but I am getting the following
prashantravi@mini:/media/sf_Shared/libav/doc/examples$ ./decode_audio ../../../example.aac ../../../out.wav
Error submitting the packet to the decoder
err code :-1052488119I tried looking up the error code but it dosent match with any of the existing error codes at all.