
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (71)
-
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
-
Dépôt de média et thèmes par FTP
31 mai 2013, parL’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...) -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)
Sur d’autres sites (10530)
-
mp4 generated using MediaMuxer doesn't play in ffmpeg
7 février 2019, par APDI need to generate an mp4 video from the raw h264 bitstream only (hence don’t have any audio channel). To do the same, I used the MediaMuxer APIs from Android. The output mp4 videos that got generated, seems fine and are playing well on VLC media player. But the generated videos don’t play on chrome browser (on Ubuntu machine) and same is the case with ffmpeg.
Other thing that I noticed is that, the mp4 generated with Android devices greater than Nougat (i.e., Oreo and later) are fine (i.e., they play on Chrome browser and ffmpeg also plays it well), however those generated from devices before Oreo, have this problem.
Has anybody observed such a behavior and what can be done to handle this on Android-devices before Oreo ? -
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 ?