Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (94)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (10286)

  • Anomalie #2542 : forum interne

    8 mars 2012, par Ben .

    confirmé : forum.log ::::::::::::: : Mar 08 16:50:23 127.0.0.1 (pid 5299) :Pri:ERREUR : /home/ben/www/spip-3.0/extensions/forum/inc/forum_insert.php_59Erreur insertion forum sur objet=’’, id_objet=

  • ffmpeg mapping streams with long title

    15 janvier 2018, par Ualik

    I want to map streams with long title. Example :

    Title : 48 kHz, AAC Dolby Digital, 2 ch, ~160 kbps

    If i use

    ffmpeg -i 0.mkv -map 0:m:title:"48 kHz, AAC Dolby Digital, 2 ch, ~160 kbps" -c copy -y 1.mkv

    then it return

    [matroska,webm @ 00000000002e7480] Invalid stream specifier: AAC Dolby Digital, 2 ch, ~160 kbps.
       Last message repeated 21 times
    Sync stream specification in map 0:m:title:48 kHz, AAC Dolby Digital, 2 ch, ~160 kbps does not match any streams.
  • Delay in video playback. Not able to identify the cause - AWS S3 region / ffmpeg / Videojs

    17 septembre 2016, par Himansu Kisan

    We are not able to identify the cause for random behavior while playing video on our website. (Sorry, cant share a link since the videos are for registered users only)
    The videos sometimes plays instantly and sometimes it takes over 1 minute to start. Not sure what we are doing wrong.

    We are using AWS S3 Oregon region (not the closest to target region, but it is cheaper) to store video files.
    The video files are encoded using ffmpeg. Below is the syntax

    ffmpeg -i input.mts -codec:v libx264 -threads 4 -movflags +faststart -profile:v high -preset slow -b:v 500k -maxrate 500k -bufsize 1000k -vf scale="trunc(oh*a/2)*2:720" "output.mp4"

    ffmpeg -i input.mts -codec:v libvpx -threads 4 -quality good -cpu-used 5 -b:v 500k -maxrate 500k -bufsize 1000k -qmin 10 -qmax 42 -vf scale="trunc(oh*a/2)*2:720" -codec:a libvorbis -b:a 128k "output.webm"

    On website, we are using Videojs 5.10.8.
    Below is the code snippet

    <video class="video-js vjs-default-skin vjs-big-play-centered" preload="none" controls="controls" poster="abcd.jpg" style="width:100%;height:100%;min-height:360px;" data-setup="{&quot;autoplay&quot;:true}">
    <source src="abcd.mp4" type="video/mp4"></source>
    <source src="adcd.webm" type="video/webm"></source>
    <p class="vjs-no-js">
       To view this video please enable JavaScript, and consider upgrading to a web browser
       that <a href="http://videojs.com/html5-video-support/" target="_blank">supports HTML5 video</a>
    </p>
    </video>

    What are we doing wrong ? Please help us out.