
Recherche avancée
Médias (91)
-
#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
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (57)
-
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 ;
-
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 (...)
-
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 (...)
Sur d’autres sites (9430)
-
Do we need to transcode mp4 or mp3 to HLS format for streaming video/ audio on mobile app ?
2 février 2019, par ken_vkWe are developing a mobile app which play music and video .
The music (.mp3) and video(.mp4) is about 5 - 20 MB . I knew we must to transcode from .mp4 to HLS format ( .m3u8) for streaming. And I still consider about transcode audio file to HLS format whether or not ?
I have two question.
- Do we need transcode video (.mp4) to HLS format if the files are about 5- 20 MB.
- Do we need transcode mp3 file to HLS format if the files are about 5 - 10 MB ?
-
Convert Video to HTML5 formate on live streaming
30 juin 2016, par php-coderthis may be answered before but i am not able to find the correct answer for my problem.
I am developing a site in PHP where user can upload a video in any format (only video format), the format can be any wmv, avi, flv, mp4 etc.
But I only need to play that video using html5 video tag, but HTML5 only support mp4, WebM and Ogg extension. And I don’t want to convert the video to any other format other than original due to some copyright rules.
now I come up to conclude to convert original video to html5 supported on live streaming, so I have gone through everywhere and google it so many time and other ways but I only find the solution for FFMPEG which convert my video to html5 support and save on my server which i don’t want, as that make much burden on my server saving same video in three different formats....
So, I need a help if anyone can suggest me how I can use video with any format to play it on HTML5 video tag.
Thanks in advance.
-
streaming while displaying locally [duplicate]
17 mars 2021, par OlivierI'm trying to stream a V4L2 device over UDP while displaying it locally too


streaming is ok :

ffmpeg -f v4l2 -i /dev/video0 -preset ultrafast -vcodec libx264 -tune zerolatency -b:v 900k -f mpegts udp://x.x.x.x:8554


playing is ok too :
ffplay -f v4l2 -i /dev/video0


and after googling and searching around I found few infos here about using tee


I tried and tried again until I found an error free command line
ffmpeg -f v4l2 -i /dev/video0 -preset ultrafast -vcodec libx264 -tune zerolatency -b:v 900k -f mpegts udp://x.x.x.x:8554 -f mpegts -| tee >(ffplay -f mpegts -i -)


except it doesn't open a window with video display but full filling terminal with garbage characters
any help / idea / advice will be much appreciated