
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (67)
-
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" ; -
Le plugin : Gestion de la mutualisation
2 mars 2010, parLe plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
Installation basique
On installe les fichiers de SPIP sur le serveur.
On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
< ?php (...) -
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"
Sur d’autres sites (7874)
-
Lib x : display problem related to window pixel color changes with the mlx_put_pixel() function [closed]
15 janvier 2023, par Jordan RigaI'm stuck on a project that I have to return for school.
I have to make a 3D game with the minilibx in C, the problem being that I try to make the graphic part work but it doesn't work (display pixels on the screen).
And all this same with the examples that I found of school 42 on the internet in that link https://harm-smits.github.io/42docs/libs/minilibx.
All configuration has been done.


Could there be a possible configuration problem ? I'm working on Kali Linux (Even using a VM on Ubuntu it didn't work).


In short my question is what can be the different reasons why the graphical part of minilibx independently of events, loops and etc does not work without errors ?


-
How to import FFmpeg files to Android project
16 décembre 2019, par AntonyI followed this https://proandroiddev.com/a-story-about-ffmpeg-in-android-part-i-compilation-898e4a249422 guide to build FFmpeg for Android. I ended up having 4 directories. Which of these do I need to paste on my project folder ? Also, where should I place them ? Inside app directory ?
I’m aware Gradle also need some configuration but the guide above provides information about it.
-
Bash script to text watermark video from filename (ffmpeg)
13 juin 2016, par YianI would like to automate some text to be ’watermarked’ on my videos. Basically I want to create a marker in my file names (eg "&&"). Then I want the script to take the content after "&&" and place it in the "drawtext" content.
For example, file named "Video2132 && The First Test" would make the part after "text=" become "The First Test".
The below code works fine without the drawtext part.
As soon as I add that function, the script runs, but it creates empty video files (zero bytes).
for f in ./*.mov; do
printf '%s\n' "Doing stuff with: ${f}"
i='0'
while (( i <= 5 )); do
ffmpeg -ss "$(( i * 25 ))" -t 25 -i "${f}" -acodec copy -vf drawtext="fontfile=/Users/mac1/Library/Fonts/Gillsanslight.ttf: \
text='Stack Overflow': fontcolor=white: fontsize=24: box=1: boxcolor=black@0.5: \
boxborderw=5: x=(w-text_w)/2: y=(h-text_h)/2" -codec:a copy "${f%.mov}.${i}.mov" -loglevel quiet
(( i++ ))
done
done