
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (6)
-
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 (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Sélection de projets utilisant MediaSPIP
29 avril 2011, parLes exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
Ferme MediaSPIP @ Infini
L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)
Sur d’autres sites (3539)
-
How to convert an mp4 file to mp3 using FFMpegCore ?
24 novembre 2024, par SimonHow can I convert an mp4 video to mp3, using the nuget-package FFMpegCore in a C# Project (.NET 8) ?


public void ConvertViaFFMpegCore(string sourcePath, string targetPath)
{
 FFMpegArguments
 .FromFileInput(sourcePath)
 .OutputToFile(targetPath, false, options => options
 .WithVideoCodec(VideoCodec.???) // <- ???
 .WithConstantRateFactor(21)
 .WithAudioCodec(AudioCodec.???) // <- ???
 .WithVariableBitrate(4)
 .WithVideoFilters(filterOptions => filterOptions
 .Scale(VideoSize.Hd))
 .WithFastStart())
 .ProcessSynchronously();
}



-
How to convert Live stream to HLS multi-bitrate ? [on hold]
22 avril 2015, par GriffinI am currently working on Live HLS Streaming. I am trying to convert streams from USB tuner to HLS with adaptive bitrate. My activity is to segment a live stream from a TV tuner card into chunks of different bit-rates.
Is there any open source tools available in Linux which does the same ? Help appreciated.
-
Convert .heic to .jpg using ffmpeg ?
19 novembre 2018, par Ketan ChauhanUsing MP4Box :
MP4Box -info IMG_5915.HEIC
I get :
prof colour profile not supported
prof colour profile not supported
Root Meta type : "pict" - 52 resource item(s)
Primary Item - ID 49
Item #1 - ID 1 - Name :
..
.
Item #49 - ID 49 - Name :
Item #50 - ID 50 - Name : Item #51 - ID 51 - Name :
File has no movie (moov) - static data container
Then if I extract all of these :
for i in
seq 51
; do MP4Box -dump-item $i:path=item$i.hevc
IMG_5915.HEIC ; doneThen if i continue, and convert these tiles to jpeg with ffmpeg it convert one tile to jpeg i.e it creates 51 HEVC tiles.
ffmpeg -i item1.hevc -frames:v 1 -vsync vfr -q:v 1 -an image1.jpg
How can I combine these tiles into a single jpg file ?