
Recherche avancée
Médias (2)
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (25)
-
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Création définitive du canal
12 mars 2010, parLorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
A la validation, vous recevez un email vous invitant donc à créer votre canal.
Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)
Sur d’autres sites (4616)
-
Nginx video streaming - ffmpeg convert to flv, but requsted is mp4
18 juin 2012, par abrahabI am converting videos from different sources with ffmpeg to mp4 with libx264 codec.
The following command (simplified) :
ffmpeg -i 1.mp4 -y -f mp4 -vcodec libx264 -crf 28 -threads 2 -strict experimental -acodec aac -ab 56k -ar 44100 -ac 2 temp.mp4
Then, I can not stream the output file (500 Internal Server Error) with nginx mp4-streaming solution (aka http pseudo streaming). My system administrator found, that if rename file to
flv
it stream well, so, seems the output file is notmp4
, butflv
? Why ? How to correctly convert ? Or, please, suggest how to stream video properly ? I think thatmp4
is much better thenflv
... therefore I choose mp4.In other words, the problem is to stream output file like
mp4
.ps i also need to be sure that this video will always work at ipad after convertation. thanks and sorry for my bad english.
EDIT : I found that if convert video with the same string but without
-vcodec libx264
- nginx can serve the output.mp4
file well. where may be the problem ? -
Icecast Ogg format - mp3
19 février 2013, par user1503606I am trying to setup live streaming with html5 and icecast and traktor.
In tracktor it will only output in Ogg format.
So i am looking for possible solution as html5 doesnt seem to work with ogg streaming on ipad and iphone.
Is it possible to some how covert the ogg format to mp3 on the fly with something like this.
<?php shell_exec("ffmpeg -i http://255.70.84.64:8000/stream soundpollution.mp3 2>&1"); ?>
But run a loop around this so it polls maybe every 10 seconds
Just thought id ask the community as i am trying this but not getting very far.
And looking for a work around
Thanks.
-
With FFMPEG, create thumbnails proportional to the video's ratio [closed]
28 janvier 2013, par Felipe SchenoneI'm using the following command to create thumbnails with FFMPEG :
ffmpeg -itsoffset -1 -i video.avi -vcodec mjpeg -vframes 1 -an -f rawvideo -s 240x180 image.png
And it works fine. However, when the video isn't 4:3 ratio, it will still create a 240x180 image, and the extra space will be painted black. Is there some variation of the command that will prevent this and give me an image proportional to the video's ratio ? In other words, I want 240x180 to be the maximum size of the thumbnail, but not the minimum.
Extra points if the command creates a smaller image when the video is smaller than 240x180.