Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (85)

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

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

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

  • Is it possible to count from a given number when extracting images from a video with FFmpeg ?

    10 septembre 2014, par Konstantin

    I am using ffmpeg to extract still images from a video. First from the beginning of the video, to a given time and then from the end of the video from a given time. So I am using two ffmpeg command line to achieve my goal. My problem is when I save the images both sequence start from 1 or 00000001, and I want to start the second sequence at some different (but greater) number than the first sequence ends. My command are :

    wine avs2yuv.exe input1.avs - | ffmpeg -y -f yuv4mpegpipe -i - -f image2 -vf fps=fps=0.1 -q:v 2 ./thumb001/%09d.jpg"

    wine avs2yuv.exe input2.avs - | ffmpeg -y -f yuv4mpegpipe -i - -f image2 -vf fps=fps=15 -q:v 2 ./thumb002/%09d.jpg"

    I made my avisynth files to yield the appropriate parts of the video I need.
    For example when the first command extarct 1500 images, name of the last file is 000001500.jpg
    I want the second command to start the counting from 1501 or maybe more, to get file names from 000001501.jpg, 000001502.jpg, etc.

  • x86inc : Make INIT_CPUFLAGS support an arbitrary number of cpuflags

    5 septembre 2014, par Henrik Gramner
    x86inc : Make INIT_CPUFLAGS support an arbitrary number of cpuflags
    

    Previously there was a limit of two cpuflags.

    Signed-off-by : Diego Biurrun <diego@biurrun.de>

    • [DBH] libavutil/x86/x86inc.asm
  • FFMPEG : AAC Number of bands exceeds limit

    6 avril 2017, par user1902291

    I am using the FFMPEG C API to decode the audio in an MP4 file.

    My code works when decoding an OGG or MP3 file, but fails on the first frame of AAC audio in an MP4

    I get this error from

    avcodec_send_packet(codecContext, packet)

    [aac @ 0x7f80eb9e3a00] Number of bands (31) exceeds limit (5)

    What is the "number of bands" and how do I increase it ? What does this message really mean ?

    Thank you in advance