
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (75)
-
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ; -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (4497)
-
h.264 MVC 3D support in x264/ffmpeg
13 mai 2016, par Codec GuyMany threads say that there is no open source support for h.264 3D on x264 and the technology is dead. However, I am working on x264 and would like to ask the experts here about their opinion :
- Is h.264 MVC 3D support added to any opensource codecs like ffmpeg/x264 ?
- If it’s not currently supported in x264, could I add 3D support to x264 ?
- Can I take x264 source code and make changes according to the JM of H.264 ?
- Is there any open source 3D decoder available ?
NOTE : Please don’t mark this question as duplicate, as all the answers I found were answered in 2010-2012 and hoping many things have been changed by now.
-
h.264 MVC 3D support in x264/ffmpeg
13 mai 2016, par Codec GuyMany threads say that there is no open source support for h.264 3D on x264 and the technology is dead. However, I am working on x264 and would like to ask the experts here about their opinion :
- Is h.264 MVC 3D support added to any opensource codecs like ffmpeg/x264 ?
- If it’s not currently supported in x264, could I add 3D support to x264 ?
- Can I take x264 source code and make changes according to the JM of H.264 ?
- Is there any open source 3D decoder available ?
NOTE : Please don’t mark this question as duplicate, as all the answers I found were answered in 2010-2012 and hoping many things have been changed by now.
-
How to run ffmpeg in a scheduled batch file with a file exclusion list ?
5 juin 2022, par MrZoopsI have the following batch file created to run as a schedule task. It auto encodes the audio to AAC in my main media folder. Everything is working, but now I need to do 2 more things :



- 

- Delete the original upon completion.
- Set it so that the next time it runs, it does not try to convert the already converted files.







Is that possible ? How would that look ? Is there a way to "disregard" file names with
CONVERTED
in them ?


for /r "C:\Users\USER\Desktop\TEST" %%a in ("*.mkv") do ffmpeg -i "%%a" -vcodec copy -acodec aac -ac 2 -ab 256K %%~dpnaCONVERTED.mkv