
Recherche avancée
Autres articles (33)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (6632)
-
Encoding SWF to video with Melt
17 août 2015, par RocketRI’m doing a project which requires converting
SWF
movies toH.264
video on server-side, to be able to play them both in Flash player and on iPhone/iPad. And I really got stuck.I’m using Melt from http://www.mltframework.org/ and this is my command-line :
melt movie.swf -consumer avformat:video.mp4 r=30 s=640x360 f=mp4 acodec=aac ab=128k ar=48000 vcodec=libx264 b=1000k an=1
It does play in Flash player, but fails to play on iDevices. I googled for iPhone video requirements and it seems my video files do satisfy them(frame size, framerate and bitrate). What settings should I change to make it play ?
-
Trying to concat videos from different sources with ffmpeg and get different broken results every time (partly no audio and/or fast forward video)
30 octobre 2022, par OliverI am using ffmpeg for years to create (merge and render) big video files from the (vaction) clips my sony camcorder produces. My basic workflow is to copy the mp4 files from the camcorder over to my pc, put the names in a file (file 'filename') and use the following command to create one big file that is playable by my apple tv :


ffmpeg -f concat -safe 0 -i filelist.txt -c:v libx265 -preset slow -x265-params strong-intra-smoothing=0:merange=58 -crf 24 -c:a aac -b:a 320k -tag:v hvc1 output.mp4



i cannot explain most of the arguments in total detail but i know that it works.
My problem occurred as i wanted to prepend some video clips recorded with an iphone to one of those files. So the first part seemed easy, the sony camcorder files have a resolution of 3840x2160 and the iphone video clips have a resolution of 1280x720 so at first i upscaled the iphone files using this command (i would have rather done in just one step but i do not know how to do that) :


ffmpeg -i IMG_1182.MP4 -vf scale=3840:2160 IMG_1182_3840x2160.MP4



then i just tried to add those upscaled video files to the filelist from the first command and ran the command for all clips again. Sadly that did not worked, as the resulting file contained all clips but only the iphone part had audio ! For the rest of the video the audio was missing. At this point i also did not noticed that the second part was played much faster (like played in fast forward mode). So guessed that i have to render the iphone and sony camcorder clips separately using the first command. That worked and i got two video files with perfect audio and video. My next step was to concatenate the resulting files using the following simple command :


ffmpeg -f concat -safe 0 -i concatlist.txt -c copy output.mp4



where concatlist contained both files.
Sadly that also did not worked. I do got a file containing both parts, this time with audio, but the video of the second part still was fast forward !


I do not know what to do at this point, and i also do not understand enough to experiment with the options any more. Can someone explain to my what could be the problems here and how to solve them ?


-
How do I convert videos to mp4 for use on Android ? [on hold]
11 avril 2014, par user3525211I am trying to use ffmpeg to convert videos (flv,mov,etc) to mp4 for use on android mobile phones. The conversion seemingly works fine. I can see the mp4s on my iphone. But when I test it out on android phones it does not work. I have been googling this problem for two weeks now and I have tried probably 50 different variations of ffmpeg command lines, but without success. I tried upgrading to the latest ffmpeg on my linux server, but I am not linux savvy and am not sure that it did what it was supposed to. I am at my wits end. Am I going about this wrong ? Is ffmpeg the right tool ? Any ideas ?
Here is the command line I have used to successfully convert to mp4s that work on iphone :
ffmpeg -y -i input.mov -s 480x270 -r 30000/1001 -b 128k -vcodec libx264 -vpre slow -vpre ipod320 -acodec libfaac -ac 2 -ar 44100 -ab 128k output.mp4