Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (93)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • 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

  • Changer le statut par défaut des nouveaux inscrits

    26 décembre 2015, par

    Par défaut, lors de leur inscription, les nouveaux utilisateurs ont le statut de visiteur. Ils disposent de certains droits mais ne peuvent pas forcément publier leurs contenus eux-même etc...
    Il est possible de changer ce statut par défaut. en "rédacteur".
    Pour ce faire, un administrateur webmestre du site doit aller dans l’espace privé de SPIP en ajoutant ecrire/ à l’url de son site.
    Une fois dans l’espace privé, il lui faut suivre les menus configuration > Interactivité et activer (...)

Sur d’autres sites (3230)

  • Using avconv (ffmpeg) to concatenate a bunch of .bmps into a mkv/avi video [migrated]

    8 juillet 2012, par user1509246

    Hoi,

    Trying to figure out how to get avconv to concatenate a bunch of .bmps together into a video file.

    Here's what I've got so far :

    avconv -f image2 -i Capture/%d.bmp -vcodec mpeg4 -r 24 -b:v 20M Capture.mkv

    While this does work, the quality is terrible - there are tons of artifacts that are visible, the colours are distorted and everything is blurred.

    I've trawled through the documentation for avconv and ffmpeg, but can't find anything that increases the quality.

    Any ideas as to how I can get the quality as close to the original bmps as possible ?

    Thanks for lending me your brains,
    - Alex

  • ffmpeg -r option

    11 juin 2012, par James W

    I am trying to use ffmpeg (under linux) to add a small title to a video. So, I use :

    ffmpeg -i hk.avi -r 30000/1001 -metadata title="SOF" hk_titled.avi

    The addition of title seems to work, but, the problem is the output file is about a 1/3rd of the file size of the input file and I was wondering why this is ? Is this at the expense of quality of the video ? I am unsure.. How do I preserve the same quality/size as the input file ?

    The main point I am unable to figure out is the use of -r option. Going through the ffmpeg docs, it seems to suggest that -r is frames per second (The input video is 23.9fps). At the moment, (30000/1001) works out to 29 fps, but I was unsure if I should be using this value.

    Thanks for your time.

  • FFmpeg - How to scale a video then apply a watermark ?

    28 août 2016, par Olibanum

    Im trying to scale a video so that it is always 512 wide where the height changes in proportion to the original video.
    Once scaled, I then want to apply a watermark/overlay to the video, therefore the video will scale but the watermark wont.

    I am able to achieve each of these separately using the following filters :

    Scale

    -vf "scale=512:-1"

    Watermark

    -vf "movie=watermark.png [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2 [out]"

    They work successfully on their own.

    However when trying to combine the two, Im having a bit of trouble.

    Having both as parameters of course does not work as one will override the other.

    Ive tried :

    -vf "scale=512:-1,movie=watermark.png [watermark]; [in][watermark] overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2 [out]"

    my thinking was that the scale would be applied first then the watermark but all I get is an error

    Too many inputs specified for the "movie" filter.

    Error opening filters !

    Then changing the , to a ; resulted in :

    Simple filtergraph ’scale=512 :-1 ;
    movie=watermark.png
    [watermark] ; [in][watermark]
    overlay=(main_w-overlay_w)/2 :(main_h-overlay_h)/2 [out]’ does not have
    exactly one input and output.

    Error opening filters !

    I presume I need to do something more with filterchains but Im struggling to figure it out.

    Any ideas anyone ?

    Many thanks in advance.