Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (64)

  • 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

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6629)

  • Anomalie #3468 : Lien forum visible dans la partie publique alors que l’article est à la poubelle

    8 juin 2015, par b b

    Je ne sais pas si c’est une anomalie ou une évolution, mais il suffirait d’ajouter dans le plugin forum par le biais du pipeline post_edition, une suppression/changement de statut des messages attachés à l’article quand celui-ci est mis à la poubelle. Seul problème, cela serait difficilement réversible (pour le statut de chacun des message) en cas de mise à la corbeille par erreur... Fausse bonne idée ?

  • Anomalie #2517 : Forum hiérarchisé : squelette vs backend

    22 mars 2012, par cedric -

    #2556 dit la même chose

  • Frame accurate seeking over extracted stream using ffmpeg

    7 septembre 2017, par nsp

    I am doing the following :

    Step 1 :
    Extracting a part of an 10min long mp4 clip, between 00:01:00.000 to 00:02:00.000 using the following option :

    ffmpeg -ss 60.000 -t 60.000 -i input.mp4 -copyts -an -c copy extracted_minute.mp4

    Step 2 : Use the following command to extract 10 second out of the 1 minute extracted clip (extracted_minute.mp4) and further encode it :

    ffmpeg -seek_timestamp 1 -ss 60.000 -i extracted_minute.mp4 -t 10.000 -copyts -an -filter:v "select='between(t\\,60.000\\,70.000)'[out];[out]setpts=PTS-STARTPTS" -c:v libx264 -y 10sec_encode.mp4

    I am facing issues when I try to seek on the extracted media in Step 2. I see that the "-ss/-t" option in "Step 2" somehow seems to operate on timestamps (starting from 0) and not the original timestamps (which had to start from 60) that are present in the stream, even though -copyts option is used. If I use -ss 0 and -t 10 in Step 2, I am able to extract frames. But, not when I use -ss 60 and -t 10.

    Am I missing something here, or is this the expected behavior from FFmpeg ?
    Is there any other method in which I can do frame accurate seeking for Step 2 ?

    Note :

    1. I need to be able to extract sequences from an already extracted stream
    2. Using -copyts option so that i have control over the exact sequences that I am extracting