
Recherche avancée
Autres articles (39)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
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 (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (3345)
-
ffmpeg : size stretched no matter what i put in "-s WxH"
18 mai 2012, par Crazy_BashI want to convert videos from .avi to .flv but i have problem the video image being stretched regardless of different size !
this is the code i'm using
ffmpeg -i "$avi" -y -acodec libfaac -ab 128k -vcodec libx264 -b 300K -bt 600k -s 704x400 -threads 0 -f flv "$flv"I can put -s 704x100 or leave the same size
and it's still stretched. the original video comes with black bars on top,left and right, after i convert the video i don't see themhere's before after pics
http://fastpic.ru/view/38/2012/0517/9bf86409d23a3c008050ab1cf70af916.png.html
http://fastpic.ru/view/38/2012/0517/55b7fd5dee90942a724bd4febd33f586.png.html -
How to use FFMPEG for Mac Apps
9 avril 2015, par Andy HinI’m building a Mac App that requires some features from FFMPEG. I want to package FFMPEG and distribute it along with my app such that it is not a dependency for the end user.
I went here http://www.ffmpeg.org/download.html#build-mac and downloaded the 64-bit static binary. I extracted it using p7zip and I now have these 2 files : https://www.dropbox.com/s/r0frvxdpsr7jfti/Screenshot%202015-04-09%2012.28.25.png?dl=0
How do I include the library in my xcode project ? How do I call the FFMPEG functions ?
Any help appreciated.
-
FFmpeg save stream to mp3
17 avril 2015, par Sergey92zpI have an iOS project that play online radio streams, it is use FFmpeg to play. Also I added ability to record streams, decode streams via
avcodec_decode_audio4
function, and write output to.wav
file. But this files are too big, because it is uncompressed format, so I want to decode files to.mp3
.I have found couple ways to convert audio but only when audio it is ready file, but I want decode to some compressed format as soon as I get chunk of data from stream, not ready file.
Is it possible ?
Can you give me some advise how to achieve this ?