
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (58)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
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 (10137)
-
Play ogg file using ffplay / ffmpeg on .NET
12 juillet 2021, par RchrdI'm trying to play an Ogg file in VB.NET using
ffplay.exe
but I don't know exactly how.
This is my code :

Private Sub ButtonIR_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ButtonIR.Click
 If IsNotNothing(TextBoxSource.text) Then
 TextBoxDETALLES.Clear()
 Try
 Dim CONVERSOR As New Process

 CONVERSOR.StartInfo.FileName = "C:\ffplay.exe"
 CONVERSOR.StartInfo.Arguments = TextBoxSource.Text 
 CONVERSOR.StartInfo.UseShellExecute = False 
 CONVERSOR.StartInfo.RedirectStandardOutput = True 
 CONVERSOR.StartInfo.RedirectStandardError = True 
 CONVERSOR.StartInfo.CreateNoWindow = True 

 CONVERSOR.Start() 

 While Not CONVERSOR.StandardError.EndOfStream
 TextBoxDETALLES.AppendText(CONVERSOR.StandardError.ReadLine & vbCrLf) 

 Application.DoEvents()
 End While

 MsgBox("HECHO") 
 Catch ex As Exception
 MsgBox(ex.Message)
 End Try
 Else
 MsgBox("Error")
 End If
End Sub



I'm not trying to convert it, I'm trying to play it.


-
How to play random part of mp4 file with vlc or something else ?
13 septembre 2011, par pprzemekI have random part (99,9% somewhere in the middle) of the mp4 file. Problem is that it's not in any container or anything just a binary piece of the file in random offset and send to me... it will keep growing but it'll take a while and I need to play content right away.
I can get all necessary metadata information for that file from other source before I even start receiving those binary data, but :
- How to do this ? I mean what headers do I need and how to get them ?
and - How to later tell vlc (or maybe some other player) that this moov atom (or some other data) that it should use for this part of the file and start playing it ?
- How to do this ? I mean what headers do I need and how to get them ?
-
Play just audio (without launching a window)
6 août 2017, par Paradise on EIs there a way to hide
ffplay
window on Windows ? I want to play audio files (some of them have video streem as well), but I don’t want a window to appear. Is there any way to hide window completelly ?I took a look at their documentationa and I didn’t find a way to do it. I also searched on the internet and didn’t find anything useful. Everyone are asking "Why in the world do you want to hide window..." and similar questions instead of actually posting an answer on how to do it.
I believe ffplay doesn’t have native way to hide window. So, what are the most easiest alternative ? One of the alternatives would be to download ffplay source code, modify it and recompile it, but it is definitelly not an easy and quick way.
Is there any way I can launch a process without showing window. It would be great if there is some way to achieve it when ffplay is launched from Node.js (becuase I am using Node.js’s module
child_process
to play audio files). So, how can I hide ffplay’s window ?My current code is following :
var cp = require('child_process');
var proc = cp.spawn('ffplay', [
'-no_banner',
'-loglevel', 'panic',
playlist.splice(Math.random() * playlist.length | 0, 1)[0]
]);Question
How to hide ffplay’s window ? If it is possible using
ffplay
native arguemnts (which I didn’t find in ther documentation) then what arguments to use ? If there is no native way, then is it possible to do it using Node.js’s modulechild_process
? If not, is there any other way I can hide ffplay’s window ? Again, I must note that some of files I play have video stream as well. So, is there any way to hide ffplay’s window ?Thanks in advance.