
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (44)
-
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (6649)
-
Acess camera to stream videos live in browser using PHP codeigniter ?
27 décembre 2016, par A SahraI am working to stream videos live in my browser using PHP codeigniter what are the best suggestion to handle and pass the video to ffmpeg and ffserver as input ,is there a good javascript plugin beside using HTML5 as streamer.
-
Rails : MP4 videos showing up blank in Firefox (but works in Chrome)
10 février 2015, par Mark BoulderI got this Rails app with uploaded MP4 videos that play back just fine in Chrome - but why do they show up blank in Firefox ?
The video appears on the page and plays just fine if I download it :
<video loop="loop" src="/path/to/whatever.mp4?1234567"></video>
From Rails I did :
<%= video_tag photo.attachment_url(:medium) %>
I tried adding
Mime::Type.register "video/mp4", :mp4
toconfig/initializers/mime_types.rb
but to no avail.Live app : http://runnable.com/VNkNeJ9wpNZJBEma/paperclip-mp4-problem
Click
Run
and navigate to the last post to see the MP4. Note that Runnable is very slow. If it sayssomething bad happened
in the terminal, try reloading the page until it disappears. -
why ffmpeg trimming videos while converting to m3u8 ?
6 janvier 2017, par Puneet SinghI am using ffmpeg version 3.2.2, and converting mp4 and mov files to m3u8 format by below command.
ffmpeg -i test.mov output.m3u8
The length of test.mov is around 3 min, but it convert it to last 24-25 seconds of only, when I play that m3u8 in player. I even merge all the segments of m3u8 to confirm the length of video, by command
ffmpeg -i output.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4
the output.mp4 is also 24-25 sec, the last 24 seconds of test.mov.
I don’t know what is wrong, it is working with small length input files like 10 seconds file.