Recherche avancée

Médias (1)

Mot : - Tags -/publier

Autres articles (27)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Formulaire personnalisable

    21 juin 2013, par

    Cette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
    Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire. (...)

Sur d’autres sites (4837)

  • Upcoming conferences / workshops

    10 septembre 2010, par silvia

    Lots is happening in open source multimedia land in the next few months. Check out these cool upcoming conferences / workshops / miniconfs… September 29th and 30th, New York Open Subtitles Design Summit October 1st and 2nd, New York Open Video Conference October 3rd and 4th, New York Foundations (...)

  • FFmpeg : omitting -filter_complex results in missing video in some players

    17 mai 2017, par pintxo

    I created a not so simple ffmpeg command with a complex filter to append opening/closing credits to a video. In the same process the video is resized and re-encoded. This works fine in all players I tested.

    When I leave out the -filter_complex arg and image inputs, the resulting file plays as expected in VLC but has only audio (no video) in Windows Media Player.

    This is all done on Windows 10, using a standard windows batch file.

    Any one an idea what’s going on here ? My ffmpeg foo is very limited.

    ffmpeg.exe ^
    -i "..\videos\film.mov" ^
    -y ^
    -codec:a aac ^
    -s:v 1280x720 ^
    -codec:v libx264 -preset slower -tune animation -crf 22 ..\videos\film.mov.m4v"

    ffmpeg.exe ^
    -i "..\videos\film.mov" ^
    -i OpeningCredits.de.png -i ClosingCredits.de.png ^
    -filter_complex "[0:v][1:v] overlay=0:0:enable='between(t,0,3.5)',drawtext=enable='between(t,0,3.5)':fontfile=fonts/Roboto-Bold.ttf:text=Test:fontcolor=white:fontsize=104:x=(w-text_w)/2:y=(h-text_h)/2+45,drawtext=enable='between(t,0,3.5)':fontfile=fonts/Roboto-Bold.ttf:text=:fontcolor=white:fontsize=104:x=(w-text_w)/2:y=(h-text_h)/2+45+text_h+20 [tmp]; [tmp][2:v] overlay=0:0:enable='between(t,39-5.2,39)'" ^
    -y ^
    -codec:a aac ^
    -s:v 1280x720 ^
    -codec:v libx264 -preset slower -tune animation -crf 22 "..\videos\film.mov.m4v"
  • Can't get Accord-FFMPEG-Package working in my .NET-Core-Application

    6 août 2019, par FlixRo

    I have an ASP.NET-CORE 2.1-Application in which I am trying to use the Accord.Video.FFMPEG -Version 3.8.0-Package. I’ve tried to install it via NuGet-Package-Manager as well as via the Package-Manager-Console.(x64 AND normal Version)

    Installing works like a charm but as soon as I am trying to set the using-directives it does not work.

    using Accord.Video; works
    If I try this : using Accord.Video.FFMPEG; i get the following error.

    enter image description here

    .csproj-Files are set like this :

    enter image description here

    If set up for example a new VideoFileWriter there is no reference to the Accord-Package.

    Is there some incompatibility that I am missing ?