
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (35)
-
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 -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (5679)
-
SDL_SetVideoMode fails under Android ?
17 avril 2013, par user1568549I am trying to buid a Video Player for android using libsdl for rendering and libav for decoding.
First, i cross-compiled the sdl library for Android platform.
Then i ceated the jni layer for my sdl cpp file(already tested under ubuntu)
but when i test it under Android it fails(with fatal error segv11 signal) exactly at the beginning in the following instruction :this->screen = SDL_SetVideoMode(width, height, 0, 0);
Does anyone know any workaround for this error ?
Does anyone know how to display video using sdl under android ?
And is there any instructions or steps that i must follow in order to render SDL gui under android ?Thanks in advance !
-
Advise newsportal [on hold]
25 janvier 2016, par DavyJI need some advise for building an news system/site where news photographers can upload photo’s and video in every format from all kind off devices like mobiles, and camera’s from different Brands to keep the system easy for everyone ! Its need to be something with PHP ,js on a wamp. Is ffmpeg enough for this to acomplish ? And if yes, can i use one form fileinput for video and photos ?. Photos needs to be converted to .jpeg and video to .mp4. Maybe someone knows/has a simple PHP form with this functionality. Any help and ideas to accomplish is welcome. Is a lot i want in one solution, but i need some input and advice about what is the best direction for this kind of system.
Thanks in advance !,
Dave -
How to extract the sound of a video from two timecodes to a .ts file [closed]
22 avril 2023, par ImprevisibleI'm trying to use FFMPEG to extract the audio from a video for a certain period of time and cut it into 5 second chunks, but it doesn't work. Instead, the chunks have different lengths and don't match what I asked for. I tried several solutions, but nothing worked.


From what I understand, the problem could be with the picturerate and the treshold, but I don't know what to do with that information. Here is the command I used :


ffmpeg -loglevel error -accurate_seek -ss 00:00:00 -to 00:00:05 -t 5 -i H:/Films/Tetris.mkv -c:a aac -b:a 128k -ac 4 -vn -map 0:1 -f adts pipe:1



This gave me an audio file of 53s, but if I do from 00:00:05 to 00:00:10, I have an audio file of 4.6s.


If anyone can help me, that would be great. Thanks in advance