
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (106)
-
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
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 (...) -
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 (...)
Sur d’autres sites (15883)
-
lavfi/earwax : clip sample, this is what sox does
3 avril 2013, par Paul B Mahollavfi/earwax : clip sample, this is what sox does
-
Is there a way to get exactly a 1 second clip using ffmpeg with the came codec AAC to AAC
20 avril 2013, par David ReddingIf I have an .mp4 file with a video stream and an audio stream. I f I execute this command :
ffmpeg -i input.mp4 -ss 00:00:14.000 -t 00:00:01.000 -vn -c:a libfaac audio.m4a
The result is Duration : 00:00:01.02, start : 0.021179. I want to make sure the start time begins at 0 so I resample it using :
ffmpeg -i audio.m4a -ss 00:00:00.000 -t 00:00:01.000 -c:a libfaac audio2.m4a
The result of this command has Duration : 00:00:01.02, start : 0.000000. Is there a way to get exactly 1 second as the final result with a 0 value for the start ?
I in previous attempts I have used the flags -map 0:1 -ab 128k -ar 44100 but it provides the same results.
I can provide the full output from ffmpeg if need be.
Thanks.
-
ffmpeg - extract thumbnail from middle of clip duration
13 février 2013, par codeloveHi I am using the following ffmpeg command to extract a thumbnail from the beginning of a clip with ffmpeg :
/usr/local/bin/ffmpeg -ss 00:00:1 -i $fileName.flv -s 150x100 -vframes 1 $fileName.jpg
Is it posible to extract a thumbnail from the middle of the clips duration with ffmpeg alone ?
Each clip is of a different length.
If ffmpeg does not supply this option, I know it is possible to get the clips duration into this type of format 00:00:01.26 and then I suppose I can divide it in half, but I am not sure if this is the best approach, and I am also (embarrassed to say) not entirely sure how to divide that format in half with PHP.
Example code would be appreciated.
Thank you.