
Recherche avancée
Autres articles (66)
-
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 (...) -
Diogene : création de masques spécifiques de formulaires d’édition de contenus
26 octobre 2010, parDiogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
A quoi sert ce plugin
Création de masques de formulaires
Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (6935)
-
How to download m3u8 file from websites like hotstar in php, js, nodejs [on hold]
11 juillet 2018, par gaurav pandeyI’m trying to download the m3u8 file from website’s(Like hotstar, voot etc) video link using php or javascript or nodejs or python.
Please help.
Thanks -
Download multiple streams simultaneously ffmpeg/avconv
20 décembre 2015, par Henry David ThoroughI have multiple source audio streams and need to download and write those to separate files. What’s the most efficient way to do this ? I’ve been using ffmpeg in multiple shells, which is obviously a ridiculous hack.
To ease illustration, below are commands to separately download two streams. What’s the most efficient way to consolidate these processes ?
ffmpeg -i http://dw-radio-english-mp3.ng.akacast.akamaistream.net/7/779/135362/v1/gnl.akacast.akamaistream.net/dw-radio-english-mp3 dw.mp3
ffmpeg -i http://br-mp3-bayern2sued-m.akacast.akamaistream.net/7/731/256282/v1/gnl.akacast.akamaistream.net/br_mp3_bayern2sued_m bayern2sued.mp3 -
Why this function not working, i am try to add watermark in Video for download [closed]
13 août 2020, par Ajay KumarI am trying to download Video with watermark but this function not working why


SHOW massege error. Video file exist in temp folder with watermark but not download


Failed to download Video if this function enabled and if disabled Video are download successful


function waterMark($videoURL,$username)
{


 require 'video_editor/vendor/autoload.php';

 $ffmpeg = FFMpeg\FFMpeg::create(array(
 'ffmpeg.binaries' => ffmpeg_lib,
 'ffprobe.binaries' => ffprobe_lib,
 'timeout' => 8600, // The timeout for the underlying process
 'ffmpeg.threads' => 42, // The number of threads that FFMpeg should use
 ), null);
 $ffmpeg_string = ffprobe_lib;


 $tempFile=rand().time();
 $outputFile='tmp/'.$tempFile.'.mp4';

 $video = $ffmpeg->open($videoURL);

 $watermarkPath = watermark_Path;
 $video
 ->filters()
 ->watermark($watermarkPath, array(
 'position' => 'absolute',
 'x' => 15,
 'y' => 30,
 ));
 $text="@".$username;
 $command = "text='$text': fontcolor=white:fontfile=OpenSans-Bold.ttf: fontsize=18: x=20: y=70:";
 $format = new FFMpeg\Format\Video\X264();
 $format->setAudioCodec("aac");

 try
 {

 $video->filters()->custom("drawtext=$command");
 $video->save($format, $outputFile);

 $array_out = array();
 $array_out[] =
 array(
 "download_url" => checkVideoUrl($outputFile)
 );

 $output=array( "code" => "200", "msg" => $array_out);
 print_r(json_encode($output, true));

 }
 catch(Exception $e)
 {
 echo $e->getMessage();
 die;
 }


}



Please solve this isu


Why this function not working, i am try to add watermark in Video for download