
Recherche avancée
Médias (3)
-
Valkaama DVD Cover Outside
4 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
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (45)
-
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (7270)
-
Fastest way to combine an image and audio file to make a video using ffmpeg
10 septembre 2020, par Ritik Sahu Studenti am using ffmpeg to combine an image and audio to make video with this command from my python program


process = subprocess.Popen('ffmpeg -loop 1 -i "{picture}" -i "{audio}" -c:v libx264 -tune stillimage -c:a aac -b:a 192k -pix_fmt yuv420p -shortest "{out_path}"'.format(picture=picture, audio=audio, out_path=out_path), stdout=subprocess.PIPE, shell=False)



but it is taking very long almost 30-45 minutes on my pc with specifications 1GB Ram and intel xenon processor. is there any way to make this process faster
i am ready to compromise the quality (decent).


-
Symfony2 command different behavior in cli and from incron
27 janvier 2014, par user3227518I'm using
incron
to watch a folder and each time a file is uploaded to it a Symfony2 command is executed to encode a video and store it in my application.The encoding is made through shell scripts using
ffmpeg
. It works fine when I use the command in cli (php app/console ...) but when the same command is called from incron, it's likeffmpeg
won't work.Do you have any idea why the scripts would behave differently when the same command is used ?
shell_exec("/absolute/path/to/script.sh /absolute/path/to/file1.avi
/absolute/path/to/file2.avi /absolute/path/to/output/output.avi") ;Thanks in advance !
-
Convert a Video_TS dir to a single mp4 or mkv file ?
29 août 2018, par RocketNutsI’ve got a file-to-file copy from a DVD, consisting of a Video_TS directory with a bunch of BUP, IFO and VOB files. I can open some (not all) of these files in a player like VLC, and it seems to contain fragments of the movie but it appears like garbage. As if the encoding or file structure is corrupted.
However, if I open the entire Video_TS dir with VLC, it plays fine.
Is there a way to convert this Video_TS dir to one single video file, such as an MP4 or MKV ?
I’ve read about the possibility of binary concatenating the VOB files, and I tried that, but to no avail. Also I wouldn’t know how to the determine the exact order of the VOB files, and more importantly that information must be within the files itself somehow (considering that video players can play it automatically).
(edit) Someone edited the question and removed the ffmpeg part. Sorry if I didn’t clarify this further : I’m actually explicitly looking for a way to do this with ffmpeg (from shell, on macOS).