
Recherche avancée
Autres articles (31)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Configuration spécifique pour PHP5
4 février 2011, parPHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
Modules spécifiques
Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)
Sur d’autres sites (4149)
-
Is there a way to automate / script video editing with python ?
20 août 2020, par user2436057I do have the problem that I have to generate a daily video file for an information screen.


I need to be able to create a video with preferably a python script that goes over all images in a directory and display each image for 10 seconds while scrolling corresponding text next to it and then display the next image. I might also have to have the ability to add a sound file or background music in the future.


I have looked at ffmpeg and it has some ability to do what I want but I thought there might be a better way or tool I could use. Since ffmpeg takes a lot of steps and its really hacky.


I am able to code the python myself I just need some API or library to handle the video processing.


Not 100% this is the right place to ask.


-
fragmented mp4 javascript converting
7 juin 2013, par user816004I wanted to know if there is a way to convert regular mp4 to a fragmented mp4 via javascript. (like mp4box does) Is it efficient enough (not suppose to be a complicated task) ? did anyone write something like this ?
to make it harder, can it be on the fly ? meaning I will not download the whole mp4 from the server but download in parts and convert it into fragments compatible with fragmented mp4 and mpeg-dash - I'm trying to overcome to problem to not have to use 2 different file types to play a video or do mp4box on all my library in advance.Regardless, is it possible to convert from h.264 compatible files with different containers (mov, flv etc.) to fragmented without a server ? meaning do it in the browser with javascript somehow ?
appreciate the help,
Yug -
How to extract specific audio track (track 2) from mp4 file using ffmpeg ?
3 mai 2019, par flashI am working on a mp4 file (36017P.mp4) in which I want to extract
Track 2 -[English]
using ffmpeg.I tried with the following command on terminal but it seems to extract
Track 1 - [English]
:ffmpeg -i 36017P.mp4 filename.mp3
Problem Statement :
I am wondering what changes I need to make in the ffmpeg command above so that it extract
Track 2 -[English]
from mp4 file.