
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (56)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
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 (9020)
-
CANNOT LINK EXECUTEABLE ffmpeg android
18 décembre 2019, par eilon marinbergI am building an app for android that uses FFMPEG native code, and whenever I run the FFMPEG command I am getting an error that says :
V/onFailure : CANNOT LINK EXECUTABLE "/data/user/0/com.android.pprojecct/files/ffmpeg" : "/data/data/com.android.pproject/files/ffmpeg" has text relocations
I am using an implemented lib I found :
implementation 'nl.bravobit:android-ffmpeg:1.1.7'
-
Blackmagic Deck Link Quad 2 and Multiple Streams with FFmpeg
23 juin 2018, par SpacePirateRobI am trying to accomplish streaming videos from 4 or more feeds on a local display from a DeckLink Quad 2 using
FFmpeg
as my transcoder. I can play two different videos (I only have two sources I can use simultaneously at my desk) fine, but struggle with connecting them into a single video if they are both on the DeckLink. The code I have for a single stream run as a.bat
is below...ffplay -video_size 1280x720 -framerate 60 -pixel_format uyvy422 -f dshow -i video="Decklink Video Capture" \ pause
Reading most forums it would seem that sticking them together with a complex filter should work, as such :
ffmpeg -video_size 1280x720 -pixel_format uyvy422 -framerate 60 -vsync drop -f dshow -rtbufsize 150M -i video="Decklink Video Capture (5)" -i video="Decklink Video Capture" -i video="Decklink Video Capture (5)" -i video="Decklink Video Capture" -an -filter_complex "[0:v][1:v]hstack[t]; [2:v][3:v]hstack[b]; [t][b]vstack" -c:v libx264 -preset ultrafast -f mpegts pipe: | ffplay pipe: -vf scale=1280:720 \ pause
And, with two videos not from the DeckLink (i.e. DeckLink and file), it does work ! But with both coming from the DeckLink I get the following in the console :
Input #0, dshow, from 'video=Decklink Video Capture (5)':0B f=0/0
Duration: N/A, start: 71582788.354257, bitrate: N/A
Stream #0:0: Video: rawvideo (HDYC / 0x43594448), uyvy422(tv), 1280x720, 60 fps, 60 tbr, 10000k tbn, 10000k tbc
video=Decklink Video Capture: No such file or directory
pipe:: Invalid data found when processing inputKB sq= 0B f=0/0And that stream works running on its own too. So my optimistic concern is just that I’m using the wrong naming scheme ; my only other idea is that I can’t read two streams from the DeckLink card simultaneously (though I feel like I’ve read I can). Another concern is introduced here too : one of my streams does not run with frame rate set to 60fps, I need to set it to 59.94fps to work, otherwise it is a black screen.
Would I need to split these into multiple processed to run each stream simultaneously, save them to a temporary file or a pipeline, then combine them in another stream to display ? I am concerned about the latency that program would introduce though. Thank you in advance !
-
avfilter/video : pick sar from link
7 décembre 2017, par Paul B Mahol