
Recherche avancée
Autres articles (96)
-
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 (...) -
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...) -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)
Sur d’autres sites (10940)
-
FFMPEG : Overlay PNG on video with optional audio track
21 avril 2015, par Daniel Jacob ArcherI’m using this command to overlay a transparent PNG over a video, and using the audio track from the video to be the only audio track in the output file. Unfortunately, this fails if the video does not have an audio track. Any recommendations on making this audio track optional (if there isn’t one in the video) ?
ffmpeg -y -i 'video_path' -i 'overlay_path' -filter_complex 'overlay[out],amix=inputs=1,pan=stereo|c0=c0|c1=c0' -map '[out]' -movflags +faststart output.mp4
-
How can I manually pass a SoundCloud track duration to HTML5 audio ?
30 janvier 2016, par thebaerI’m currently using a stripped-down version of Canvas.fm to convert SoundCloud mp3 streams into ogg streams using Node and ffmpeg, to support the
audio
element in ogg-playing browsers like Firefox. My problem is : while the duration is correctly set for SoundCloud’s mp3 streams, the ogg stream gives an indefinite duration in the player ; I want the actual duration to show up.I noticed when requesting a SoundCloud mp3 stream, I get a canceled request, a pending one, and then a 206 Partial Content response. My Node app does similar redirects, without as many headers, since I’m sending them myself.
Should I be trying to calculate/forge the Content-Length or Content-Range headers ? Or does HTML5 audio get the duration from mp3 metadata/ID3 information ? If I can get the duration from SoundCloud’s API (which I can), how can I pass this to the client in my ogg stream ?
-
lavf : add AV_DISPOSITION flags for WebVTT text track kinds
24 juin 2013, par Matthew Heaneylavf : add AV_DISPOSITION flags for WebVTT text track kinds
There are 4 separate WebVTT text track kinds : subtitles (the default
if not otherwise specified), captions, descriptions, and metadata.
The WebM muxer needs to know which WebVTT text track kind this is, in
order to synthesize the correct track type and codec id.To allow a demuxer to indicate the text track kind of the input, a new
set of AV_DISPOSITION flag values has been added, corresponding to
each of the non-default text track kind values.