Recherche avancée

Médias (91)

Autres articles (97)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 ;

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (15605)

  • Revision a4e85a5f4f : Implementing right flushing for simple_encoder. simple_encoder : Flush encoder.

    11 août 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /examples/simple_encoder.c



    Implementing right flushing for simple_encoder.

    simple_encoder : Flush encoder. According to the current API spec we need
    to call vpx_codec_encode() until vpx_codec_get_cx_data() returns NULL.

    Change-Id : Ibc37706e5257a3d51e5421ca17f77ab41249d9b5

  • how to modify movie filter in ffmpeg using zmq

    14 juin 2016, par ramon1604

    So far, we can modify overlay, scale and others but we do not find the proper syntax to modify movie filter in ffmpeg. We are using perl to send zmq command to ffmpeg and it returns 0 success when command is properly received. Please help. thanks

  • Extract WAV audio file from video after uploading on web, using FFMPEG in django

    26 mars 2019, par maryam mehboob

    Problem

    I am trying to find a way to extract an audio wav file from a mp4 video file that is uploaded by a web user using ffmpeg using Django.

    If I will find to extract audio, then where should I save it in my project ?

    1. I tried it with "Django-ffmpeg", but didn’t convert and was stuck in ’pending conversion’ message.
    2. Then I tried with :

      import subprocess

      subprocess.call('ffmpeg -i filename.mp4 filename.wav')

    Error

    Error

    Script

    def validate_file_extension(value) :
    import os
    from django.core.exceptions import ValidationError
    ext = os.path.splitext(value.name)1 # [0] returns path+filename
    filename = os.path.splitext(value.name)1 # [0] returns path+filename
    valid_extensions = [’.mp4’]
    if not ext.lower() in valid_extensions :
    raise ValidationError(u’Unsupported file extension.’)
    else :
    import subprocess
    subprocess.call(’ffmpeg -i filename.mp4 filename.wav’)