
Recherche avancée
Médias (16)
-
#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
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (35)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (4148)
-
FFMPEG handling h264 stream that does not send a frame consistently
23 avril 2022, par Rhys_mI am working with a raw h264 stream, this is a live stream coming from a device, however when the device is streaming a menu page that is static, it doesn’t send out a frame. I am feeding the stream back into a v4l2 loop back instance and then consuming this on a webpage via getUserMedia. The issue I have is that ffmpeg does not send frames to v4l2 when the hardware device is not sending frames. I have tried to set the output of ffmpeg to cfr and 60fps. However this doesn’t make it send out duplicates of the last frame. Is there anyway to achieve this ?


Thanks in advance


-
.mp4 cant play on WMplayer. Tried to change container and work. How to create a ffmpeg batch fix to apply to entire directory ?
3 octobre 2019, par luizaI have some
.mp4
files which are not playing in Windows Media Player, (Error : Windows Media Player cannot play the file. The Player might not support the file type or might not support the codec that was used to compress the file)_, but does play in VLC. I tried to change the container from.mp4
to.flv
using a.bat
and after I changed it back to.mp4
and the file started playing normally without the error message. Does anyone have an idea of what it might be or how I can write a a command for batch conversion which changes the containers in all folders, and then change it back to.mp4
and save in another folder, (or will I have to do folder by folder ?)I used ffmpeg, and the command I put in the batch file was :
The first
.bat
to change the container from.mp4
to another container, (I chose.flv
) :for %%a in ("*.mp4") do ffmpeg -i "%%a" -vcodec copy -acodec copy "%%~na.flv" pause
The second
.bat
to change back to.mp4
:for %%a in ("*.flv") do ffmpeg -i "%%a" -vcodec copy -acodec copy "%%~na.mp4" pause
I wrote this on
notepad
and then saved.bat
. After changing all files I wrote the way back.I dont know exactly what it does, but I know it fixes any issues.
Can someone help me to write it better and make it work with the whole directory and then save it to another directory to not overwrite the older files ?
Thanks !
for %%a in ("*.mp4") do ffmpeg -i "%%a" -vcodec copy -acodec copy "%%~na.flv" pause
-
My Website Downloads MP4s Instead of Plays them
18 juillet 2014, par user3412869I have a website I am working on and I have an uploads/ folder with mp4 files. When I test this site locally using XAMPP and click the link to the MP4 files, Chrome plays the MP4 with the browser and then when I click the back button it takes me back to my site. When I upload all of the site files to a webserver and click the same links to view the mp4 files it downloads the files and keeps me on the same page. However, I would like it to perform the same actions it does when I am developing locally, and play them, not download the files.
Is it possible to have Chrome play Mp4 files that are hosted on a server and not download them ?