
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (69)
-
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
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 (...)
Sur d’autres sites (9640)
-
Converting an HLS (m3u8) to MP4
6 décembre 2016, par orcamanCan anyone advise on how to construct an
MP4
file from anHLS
stream (the reverse of what you usually want) ? Say I have the m3u8 - is there a straightforward way of getting a singleMP4
usingFFMPEG
or some other tool ? -
How to incorporate screencasting into a rails project
13 mars 2015, par ruby_newbieI am working on a personal project and I want to incorporate screencasting with it. I want the screencast to be able to record the entire screen not just the page in a web browser so I think JS is out as a solution. I have searched and found a few clues but nothing concrete as to how i can make it happen short of learning Java. Here is what I have tried :
Rmov :https://rubygems.org/gems/rmov I cant get bundler to run bundle with this gem but this has the exact functionality I want. I think it has to do with quicktime being 32 bit but I am not sure. I opened an issue on Github in hopes to resolve it.
I saw this post : http://devblog.avdi.org/2013/01/21/my-screencasting-process/ which links to this script : https://github.com/avdi/Xcast/blob/master/Xcast
but I am failing on the require ’highline/system_extensions’ line (require cannot load such file).I found this : http://rvideo.rubyforge.org/ but I am still confused as to how to implement it. FFMPEG seems promising though and like it may be the tool I am looking for.
Does anyone know of a tool that would allow me to do this or a good tutorial that explains this process in detail ? Any help is appreciated and let me know if you need any more info that I can provide.
-
FFMPEG conversion from .H264 to MP4 playing too fast
28 juin 2017, par NickRI accidentally deleted a video file but managed to save it with a recovery tool. The video was however corrupted, but I managed to repair that and now have a .h264 file.
The file plays ok in the VLC player. There are a few glitches but on the whole its 98% perfect. However I now need to convert that into a more useable format (mp4 say).
Ive downloaded the FFMPEG tool and have managed to pretty easily copy into mp4 with the following command line instruction :
ffmpeg -i repairedVid.h264 -c copy repairedVid.mp4
The problem is that the video is playing much too fast. I’ve done some research tried some tweaks that seem to have worked for other people (like forcing frame rate and changing the -vsync) :
ffmpeg -i repairedVid.h264 -c copy repairedVid.mp4 -vsync 2 -r 23.976
Ive also tried the crude approach of slowing the video down like this, but this was more of a long shot and I don’t think is the right way to go about it
ffmpeg -i repairedVid.mp4 -filter:v "setpts=1.5*PTS" repairedVid.mp4
This is the output when the video copies to MP4. Looks like it might have a clue to the problem (the video should be much longer than 4:40 minutes) :
frame=13459 fps=1118 q=-1.0 size= 4102773kB time=00:04:40.65 bitrate=119756.4kbiframe=13459 fps=1117 q=-1.0 Lsize= 4102928kB time=00:04:40.65 bitrate=119761.0kbits/s speed=23.3x
video:4102773kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead : 0.003784%I’m totally new to FFMPEG and not having much luck. Any advice would be great.
Thanks in advance