
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
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 (112)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
La sauvegarde automatique de canaux SPIP
1er avril 2010, parDans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)
Sur d’autres sites (11588)
-
ffmpeg -vf transpose not working for output as .mp4 file
5 août 2014, par user3909162I want to rotate iPhone/iPad video to 90 degree, i am using following code
$input = 'video1.mp4';
$output = 'output.mp4';
$command = "ffmpeg -i $input -vf transpose=1 $output";
exec( $command, $ret );the above code is not working for
$output = 'output.mp4'; //(mp4 file)
but its working fine when i use
$output = 'output.avi'; //(avi file)
Please tell me solution for this i want also compress video in mp4 video.
-
using FFMPEG to convert to MP4 with maximum browsers compatibilty
6 mars 2016, par KarimI’m converting from
WMV
toFLV
usingFFMPEG
, and my problem is that theFLV
videos are so big ! the 15 minutes video’s size ranges between 150MB and 1GB !
I’m using the followingFFMPEG
command to convert and splitWMV
videos :nohup nice -1 ffmpeg -y -ss 00:00:00 -t 00:15:00 -async 1 -i INPUT.WMV -acodec libmp3lame OUTPUT.FLV
And I’ve tried converting to
MP4
before and the video size was much smaller than theFLV
video.So my questions are :
- Would the
MP4
videos have any
compatibility issues browsers ? - Would it work on iPhone, iPad ? (I
knowFLV
videos doesn’t work on
iPhones or iPads) - What is the best
FFMPEG
command to
convert toMP4
without losing the
quality of the video ?
- Would the
-
Screenshots at Beginning and End of Video
26 avril 2016, par NeMesiSI have over 1700 emulator videos I need to take screenshots of. I need one set of (Action) screenshots about 5 seconds into the start of the video and another set of (Title) screenshots at about 2 seconds from the end of video.
For the Action Shots (Start) I’ve got :
ffmpeg -y -ss 5 -i "VideoName.mp4" -vframes 1 "Action/VideoName.png"
And for Title Shots (End) I’ve got :
ffmpeg -sseof -2 -i "VideoName.mp4" -vframes 1 "Title/VideoName.png"
But now I need these new image’s to retain the same filename as the source.
For example :
Donkey Kong.mp4 > Action/Donkey Kong.png
And I also need to be able to do this to many video files.
Any help will be much appreciated, Nem