
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 (59)
-
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 (...) -
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 (...)
Sur d’autres sites (7166)
-
how I could do green screen effect in ffmpeg for put a image into video with whte background using ffmpeg ?
20 décembre 2018, par userpovhow I could do a green effect but instead of green color change all white color for another background
like this video
https://www.youtube.com/watch?v=zgge8y9YUEs
please help me
-
How to merge image and audio to video with the same color ? (FFMPEG)
6 février 2019, par JeanClothemi try to merge audio and image to video in ffmpeg,
The problem that export does not have the same color as the original
Here is a comparison on YouTube
Original : https://www.youtube.com/watch?v=NsSBI9qwFE4
Export ffmpeg : https://www.youtube.com/watch?v=FsxwqTSqpbQ
ffmpeg -loop 1 -i rose.jpg -i rose.flac -c copy -shortest rose.mkv
I want to get the same color as my original image
Thank you !
-
Encoding video stream by http protocol using ffmpeg library
20 juillet 2014, par user3780677I’m trying to encode video files, that users upload on my server.
I interpretate file as stream, incoming on my server by http protocol and use ffmpeg for realtime file encoding, while upload procedure executes.When source file have
.avi
format, I have successful encoding result, but on.mp4
format appears error :---------------------
[buffer @ 0000000000308380] Unable to parse option value "-1" as pixel format
Last message repeated 1 times
[buffer @ 0000000000308380] Error setting option pix_fmt to value -1.
---------------------I think this might be because .mp4 contains
"moov atom"
data in the end of file.
I think so because when I processing file by"-movflags faststart"
command before encoding, I also have successful result.That is the command i using now :
ffmpeg -i http://myhost.com/app/video/video2.mp4 -f mp4 -vcodec libx264 -b:v 800K -acodec libvo_aacenc -b:a 128K -ar 44100 -ac 2 -y c:/watch-and-get/video/video5.mp4
Can I resolve this problem and encode multiple video formats as a stream without any excess steps ?