
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras. -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (10966)
-
Nodejs : how to create video from images ?
18 janvier 2020, par Amit JainHow can you create a video from given images in Node.js ?
I tried using theffmpeg
npm module but it won’t work for me, and I also tried using thevideoshow
npm module and that also did not work for me.Can anyone suggest how to create video from images and also give me some basic code to run ?
-
FFmpeg missing frame after H264/TS to RAW/AVI
13 août 2013, par alexbuissonWhile converting a H263/TS to a RAW/AVI with
ffmpeg -i in.ts -vcodec rawvideo -pix_fmt yuv420p out.avi
I found that the output AVI file had less frame than expected. It may come from PTS error in the TS, but if I convert it first to MP4 using the -vcodec copy option, I don't lost frame while performing MP4 to RAW/AVI.
Is there a solution to ignore the PTS to convert directly from TS ?
-
video playlist to rtmp server seamless playback using ffmpeg without re-encoding
25 février 2020, par hedgehog90I have a list of rtmp compatible videos that make up a continuous playlist.
I’ve run into the common problem, that if I try to stream each one sequentially using separate ffmpeg commands, there is a significant gap that occurs on the streaming service.
I not only want to eliminate this gap, but also adapt the ffmpeg output to playlist updates if it’s edited on the fly, much like how a playlist system works in any media player, as well as a basic seeking mechanism.
By what method is this possible ?
Also - I know I’m asking a lot in one question, and I suspect the answer is a definitive ’no’ - but I’d like to know if it is possible to use different resolutions and/or frame rates without stopping and starting the rtmp stream.
Thanks.