
Recherche avancée
Médias (1)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
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 (...)
Sur d’autres sites (8011)
-
Which is better solution using ffmpeg ? [closed]
2 janvier 2020, par Munkhbat MygmarsurenI am working on web and mobile app project using ffmpeg. It’s need to integrate 2 or more audio or video files.
Question is, which solution is better ?
I’ll use ffmpeg on server, or install ffmpeg on client device before using app.I want to using ffmpeg on server. But I am thinking, it’s maybe server slows down when multiple users send a request at the same time to server.
-
jwplayer slow buffer video lag
8 juillet 2015, par user281738I’m using Jwplayer for my mobile site... So i need mobile capability html5 player.. i choose jwplayer.
I’m Converting Video with ffmpeg
ffmpeg -i Input.mp4 -vcodec h264 -b 1400k -s 1280X720 -acodec libfaac -ac 2 -ab 128k -movflags faststart -y Output.mp4
I’m Using Centos Apache server and so i installed H264 Streaming Module
My videos are starting fast at first.. but in middle when my internet slows and buffering slows down.. At the same time video lags and sounds continues for few second ... at some point my video and audio sync well. This is happening because of slow buffer problem.. After whole video buffered when i replay..full video is playing well .
I Used Some Android Phones Chrome Browser To Check .
I need playing position to Show load Icon and wait if buffer slows.. not lag videoI cant lower my video bitrate.. because of my competitors.. i want solution for my html5 player.. i have added my jwplayer code.
<code class="echappe-js"><script> jwplayer("myElement").setup({<br />
width: "100%",<br />
skin: "skin.xml",<br />
autostart: true,<br />
<br />
sharing: {},<br />
image: "http://example.com/Mp4/screen.jpg",<br />
<br />
sources: [{<br />
file: "http://example.com/720.mp4",<br />
label: "720p",<br />
"default": "true"<br />
},{<br />
file: "http://example.com/HD/hd.mp4",<br />
label: "HD"<br />
},{<br />
file: "http://example.com/Mp4/480x320.mp4",<br />
label: "480p"<br />
}],<br />
startparam: "starttime",<br />
stretching: "exactfit",<br />
autostart: false,<br />
});<br />
<br />
<br />
<br />
</script> -
how to edit sound best with ffmpeg
5 mai 2016, par Kate HudsonI’m trying to convert sound with
ffmpeg
using the followingcommand
:ffmpeg -i NeededMe.mp3 -af "pan=stereo|c0code>
but I can not listen to audio files on mobile devices. How can I fix it ?