
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (103)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...)
Sur d’autres sites (12572)
-
Revision 45aa6f15b0 : Remove redundant bsize mapping in motion search Both single frame and compound
5 décembre 2013, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Remove redundant bsize mapping in motion searchBoth single frame and compound inter motion search run with luma
component only. Hence removing the block size mapping therein.Change-Id : I217488e702432ae9fa0e95bf6f516ebb36b5c79b
-
FFMPEG error : Error while parsing expression 'PTS-STARTPTS+/TB' while trying to merge two videos with different starting time [closed]
13 octobre 2020, par Sankalpa SarkarI was trying to merge two videos in .webm format side-by-side, with the exception that the second video might start a bit later than the first video, in which case there will be a blank buffer on the right side till it starts. To do that, I deployed the following code :


DIFF=$(($start_ts-$BASEts))
 DIFFms=`echo "scale=0;$DIFF/1000" | bc`
 DIFFs=`echo "scale=4;$DIFF/1000000" | bc`
 ffmpeg -i a.webm -i b.webm -filter_complex \
 "[0]pad=2*iw:1*ih[l];[1]setpts=PTS-STARTPTS+$DIFFs/TB[1v]; [l][1v]overlay=x=W/2[v]; \
 [1]adelay=$DIFFms|$DIFFms[1a]; \
 [0][1a]amix=inputs=2[a]" \
 -map "[v]" -map "[a]" -vcodec libvpx -cpu-used -5 -deadline realtime finalOutput.webm



However, I keep getting this error :


[Parsed_setpts_1 @ 0x5598b680cdc0] [Eval @ 0x7ffcb6ae1550] Undefined constant or missing '(' in '/TB'
[Parsed_setpts_1 @ 0x5598b680cdc0] Error while parsing expression 'PTS-STARTPTS+/TB'
[AVFilterGraph @ 0x5598b67872a0] Error initializing filter 'setpts' with args 'PTS-STARTPTS+/TB'
Error initializing complex filters.
Invalid argument



It is not recognizing the DIFFs variable at all and is hence unable to process the code. I tried replacing the entire setpts in a different variable as well and using it in setpts while merging. That process did not work either


-
Two pass encoding for VP8 using FFmpeg libraries
20 mars 2014, par taansariI am trying to simulate two-pass encoding using FFmpeg libraries. Code I have so far is working fine for h264 codec, now I want it to work also for VP8. Normal encoding (i.e. single pass) works fine, both for mp4, and webm ; but the changes in code for two pass works only for mp4s. I have tried to tally code from ffmpeg.c file, and add it up in my encoding routines.
Looking closer at different locations, developer logs, etc., I have come down to following possibilities :
- 'stats_out' buffer is never allocated (though documentation says it is allocated automatically for encoding)
- avcodec_encode_video2(c, &pkt, frame, &got_output) never sets 'got_output' for first pass
Necessary bits of code :
https://gist.github.com/anonymous/3e01cfdeb64fd577cc48
In above code, for CODEC_FLAG_PASS1, stats file is created, but stats_out is always NULL, and avcodec_encode_video2() never sets got_output, so code under it is never executed.
Apparently I have missed out something, but cannot understand what, exactly. Can anyone guide me towards my mistake ?
Thanks !