
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (65)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
Sur d’autres sites (8145)
-
ffmpeg - scrolling text with specified boundaries and cut video when text ends
19 février 2017, par Elma PaulHaving this working ffmpeg filter with overlayed scrolling text
f -i text_bg.mp4 -vf "drawtext=enable:fontsize=200:fontcolor=White:fontfile='ARIALN.TTF':text='asdfhlajsdh LKFJAHSDFH':x=-(mod(8*n\,w+tw)-tw):y=h/2-th/2" outtt.mp4 -y
I have two questions :
1.) How can I set specified boundaries for drawtext ? Just fix positions where the text will dissapear. Like here in picture
scrolling text with specified boundaries example
2.) How is it possible to cut the video(specify time) according to the text length.Meaning that the video will finish after ends the text line +plus one second ? -
PHP serving two different video files
6 septembre 2016, par inanI’m currently serving with PHP .ts segments while FFmpeg is running.
My idea was to show during the stream my own advert. So I decided to add between the .ts segments my own video file.The problem is, if the advertising file is not existing everything is working fine until the file for my advert exists. The script continues but is not showing the advert.
I tried to serve just only the advert file and it’s working. So I can assume, everything with the file is alright.
Is there a limitation, to serve just only one file extension or container etc ?
I’m watching the streams with VLC and Enigma2
A part of my code :
while(streamIsRunning()){
// Serving .ts segments
while (!feof($file_handler) && ClientConnected($clientpid)) {
$response = stream_get_line($file_handler, 4096);
echo $response;
flush();
}
// Serve Advert if exists
if (file_exists($myAdvert)) {
$file_handler = fopen($myAdvert, "rb") or exit ("Stream Not Working");
while (!feof($file_handler) && ClientConnected($clientpid)) {
$response = stream_get_line($file_handler, 4096);
echo $response;
flush();
}
}
} -
FFmpeg : how to make video out of slides and audio
17 juillet 2014, par Muhammad UmerSo i have several images some png and some jpgs. And i have mp3 audio. I want to make a video file don’t care what format.
So i want either :
A video made up of xyz size meaning images are centered and cropped if they go beyond dimensions coupled with audio in mp3 format..
or just one image centered or and cropped, still image, video with audio.
I have tried copying and pasting things and even modifying them after reading documents but in the end i got a blank video with audio and huge file that took forever to complete.
I have windows 7.