
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (82)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (11889)
-
FFmpeg add proxy to request
28 septembre 2024, par P1NG2WINDoes FFmpeg support the ability to add a proxy to a request ? On the Internet, I found that there is the -http_proxy option, but when I tried to use it by typing
ffmpeg -http_proxy=http://ip:port/
in terminal, I received an Option not found error

-
ffmpeg in AWS EBS Php Environment
3 janvier 2018, par ShihasI did a project in Codeigniter framework and uploaded to AWS EBS Php environment.
In the below function I’m trying to create a thumbnail for the uploading video using ffmpeg.
function test()
{
if($_FILES['video']['name'])
{
$extension = pathinfo($_FILES['video']['name'], PATHINFO_EXTENSION);
$video_file = 'vid_'.time().rand(0,10000000);
$video_file_name = $video_file.'.'.$extension;
$video_thumb = $video_file.'.png';
$path = base_url('/assets/portfolio_video/').$video_file_name;
move_uploaded_file($_FILES["video"]["tmp_name"],$path);
echo shell_exec("/usr/bin/ffmpeg -i /home/ubuntu/project/assets/portfolio_video/$video_file_name -ss 00:00:02.000 -vframes 1 /home/ubuntu/project/assets/thumbnail/$video_thumb");
echo "File Name: ".$video_file_name."";
echo "<img src="http://stackoverflow.com/feeds/tag/".base_url("assets/thumbnail/").$video_thumb."" style='max-width: 300px; max-height: 300px' />";
}else{
$this->load->view('test');
}
}Here the problem was the video file itself not uploading. I just want to know why its not uploading files in AWS. But it works fine in my local server.
Now I try to create a thumbnail for the already existing video in the server.
Path of video file :
/home/ubuntu/123.mp4
Code executed :
function test()
{
echo shell_exec("/usr/bin/ffmpeg -i /home/ubuntu/123.mp4 -ss 00:00:02.000 -vframes 1 /home/ubuntu/thumbnail.png");
}But still the thumbnail is not creating.
NOTE : When I execute the terminal command
ffmpeg -i /home/ubuntu/123.mp4 -ss 00:00:02.000 -vframes 1 /home/ubuntu/thumbnail.png
directly in the AWS server terminal its create the thumbnail successfully. -
Using ffmpeg to concate 1 video with all in that directory [on hold]
30 décembre 2017, par tytp oopI want to concate video.
I have more than 500 videos in directory Videos and I have 1 small video which I want to concate with all 500 videos at starting of all 500 videos.
And also I want to add water mark to all video. I have only linux OS. I want this to do with terminal.