Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (82)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7790)

  • Raw Audio Issue / Settings [on hold]

    31 octobre 2016, par GumboMcGee

    I have a raw audio file that i am trying to convert to WAV, I have run it though ffmpeg several times with different arguments (see below), and i have got it to a point where it sounds right, except for weird jumping / skipping.

    I have looked around on the internet for a fair while and cannot find any information that might help me figure out the issue,

    Hopefully someone here will be able to help me out in finding the fix.

    I have included a link to a section of the output WAV file from ffmpeg, i advise you skip to about the 2 minute mark, as it has the best example of sounding like an actual music but still does the skipping.

    ffmpeg command for WAV output :

    ffmpeg -f s16le -ar 22050 -ac 2 -i music.raw output.wav

    Link to the output WAV file

  • Combine images into video (with audio in background) in ffmpeg

    4 juillet 2021, par Mayank Thapliyal

    I have a folder with 15 images and 1 audio file :

    


    image_1.jpg, image_2.jpg, image_3.jpg ..... and music.webm

    


    (Also resolution of images is 1440x720)

    


    I want to combine these images into a video with audio in background.And framerate I require is 0.2 (5 second for each frame).I gave a search on Stackoverflow and I found the nearest example and tried.But it failed.

    


    ffmpeg -f image2 -i image%03d.jpg -i music.webm output.mp4

    


    (Actually I have very little knowledge of ffmpeg so please excuse my foolishness)

    


    Please help me with my issue.(Also I didn't understood where in the code I have to enter framerate)

    


    Edit :-If needed I can easily tweak with filename of images.Be free to tell me that too

    


  • How to copy ffmpeg conversion output to file name without previous file extension [duplicate]

    20 janvier, par Tim

    I am trying to batch convert mp4 music files to m4a music files using ffmpeg on ubuntu .The command works but uses previous file extension for new name.

    


    find ./ -iname "*.mp4" type f -exec ffmpeg -i {} -vn -acodec cp "{}".m4a 


    


    This command produces a new file as such : ..01_Loser.mp4.m4a

    


    but I need ..01_Loser.m4a

    


    I cannot figure out how to get file name without previous extension. Any help would be appreciated. Thanks !