Recherche avancée

Médias (91)

Autres articles (54)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

Sur d’autres sites (7174)

  • Evolution #4427 (En cours) : Permettre (via une constante) de passer de 65 536 à 4096 le nombre ma...

    24 janvier 2020, par b b

    Salut, peux-tu fournir un diff du patch que tu proposes afin de faciliter la compréhension de ta proposition ?

    PS : version cible 3.3 mini

  • FFMpeg hls_time accuracy

    24 juin 2015, par Vishnu Kumar. S

    I’m using ffmpeg library in an ios application to convert mp4 video to HLS. I want to keep the ts file duration as exactly 10 seconds. So I put the following code.

    av_opt_set_int(formatContext->priv_data, "hls_time", 10, AV_OPT_SEARCH_CHILDREN);

    But the result is not exactly 10 seconds, the duration falls around 10 second, say 11 seconds, 12 seconds, 9 seconds etc. Is there any method to get the accurate 10 second segments from the ffmpeg ?

  • Ffmpeg cut out a segment of an audio file

    27 août 2023, par Black Eyed Beans

    I'm trying to cut out part of an audio file that falls withing a specific range. For example having an audio file that is 60 seconds long. I want to cut out the segment between the 10th second and the 15th second. When the audio is played it will start from the beginning, skip 5 seconds(between 10-15) then play to the end. How can I achieve this with ffmpeg.
Here is the command I've tried but it's not working.

    


    final cmd='-y -i \"$audioPath\" -vn -af aselect="not(between(t,10,15))" \"$outPutName\"';