Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (29)

  • 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 (...)

  • 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

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (5004)

  • Is it possible to split frame accurate an AAC file using FFmpeg ?

    12 mai 2019, par CAHbKA

    What I did :

    # create source material
    ffmpeg -y -i some.file -c:a libfdk_aac -profile:a aac_he -b:a 128k -ar 44100 source.m4a

    # split into two parts
    ffmpeg -y -ss 00:00:00 -i source.m4a -to 6 -c copy part1.m4a
    ffmpeg -y -ss 00:00:06 -i source.m4a -c copy part2.m4a

    # re-encode only the first part with the same setting as source file
    fmpeg -y -i part1.m4a -c:a libfdk_aac -profile:a aac_he -b:a 128k -ar 44100 part1reencoded.m4a

    # create file list to be concatenated
    echo 'ffconcat version 1.0
    file part1reencoded.m4a
    file part2.m4a' > my.list

    # finally concatenate both parts
    ffmpeg -y -f concat -safe 0 -i my.list -c copy parts.m4a

    # play the result
    ffplay parts.m4a

    Unfortunately, the result file has noises at 00:00:06.

    Is it possible to split frame accurate an AAC file using FFmpeg ?

  • libvpxenc : split vp8/vp9 options array

    2 novembre 2013, par James Zern
    libvpxenc : split vp8/vp9 options array
    

    the current options are left for both to provide command line compatibility

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/libvpxenc.c
  • How do I split up a huge .mp3 file into multiple 200KB .mp3 files ? Each should be individually playable

    9 mai 2021, par Foxxey

    So I have a big .mp3 file and I would like to split it up automaticly in multiple 200kb .mp3 files. They should be individually playable. I have ffmpeg installed. Is there a way to do this using it ?

    &#xA;