
Recherche avancée
Médias (91)
-
Spitfire Parade - Crisis
15 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Wired NextMusic
14 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (60)
-
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (3546)
-
ffmpeg send video to one process and audio to another
20 juin 2017, par mooI’m using Sailfish OS (Linux), and have built ffmpeg with the hope of using the ffplay player. Video works fine, but audio doesn’t work and I think ffplay would need to be patched to use libaudioresource, which is beyond my skills (others have verified the problem).
However, the pulseaudio paplay and pacat commands work fine, so for example, I can do :
ffmpeg -i file.mp4 -f wav - | paplay
What I’m trying to achieve, is to send video to ffplay and audio to paplay, but the best solution I’ve found so far, is :
ffmpeg -i file.mp4 -f avi - | tee >(ffplay -) >(ffmpeg -i - -f wav - | paplay) > /dev/null
This is not very efficient though, and whilst it works, it breaks up frequently, and I was hoping there was a better way of achieving this, using -map 0:a and -map 0:v or FIFOs of something ? Any suggestions much appreciated.
Thanks
-
FFmpeg video alpha merged freezes
29 mai 2017, par cdapalcI am using ffmpeg 4 Android to overlay a video with alpha channnel in a normal video. I use the following command :
String[] mergeVideosCommand = new String[]{
"-y",
"-i",
videoAlphaPath.mov,
"-i",
videoNormalPath.mp4,
"-filter_complex",
"[0:v]colorchannelmixer=aa=1[ov];[1:v][ov]overlay=0:0[video_out]",
"-map",
"[video_out]",
"-map",
"0:a",
videoResultPath.mp4
};
ffmpeg.execute(mergeVideosCommand, responseHandler);Both videos get merged, but the non-transparent one freezes after one second of playing but the video with alpha channel keeps moving and both audios work fine as well.
I have tried the same command from my computer (with ffmpeg v2.6.3) and it works fine but I need to make it work on Android (ffmpeg v3.0.1).
Anybody experienced something similar ? I would appreciate any help. Thanks. -
ffmpeg - mpegts Multicast [closed]
7 juin 2024, par Miguel DuarteI'm generating a multicast stream with this command :


ffmpeg -hwaccel_device 1 -format_code Hi50 -re -f decklink -i 'DeckLink Duo (1)' -pix_fmt yuv420p -c:v h264_nvenc -profile:v high -b:v 3500k -rc 2 -cbr true -maxrate 3500k -bufsize 7000k -c:a mp2 -b:a 192k -f mpegts "udp://239.1.1.2:5000?ttl=2&pkt_size=1316"



My problem is that if I open this stream on a device with a 100Mb/s connection, it's heavily pixelated. The same stream on a 1Gb/s device displays fine.


I have other multicast streams from our ISP and they display fine regardless of connection speed.


Has someone come across this issue ? This seems ffmpeg related.


I tried several settings, bitrates, etc. Also playing on VLC, OBS. Same result.


Version :


ffmpeg version N-111519-gefa6cec759



Thanks in advance.