Recherche avancée

Médias (91)

Autres articles (109)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Avconv / FFmpeg - could not find codec parameters

    21 octobre 2014, par scottpaterson

    I am trying to convert a simple SWF (that accepts variables - FlashVars) to an mp4 on Linux Ubuntu.

    I have been using Gnash to convert the SWF into a Raw video file :

    dump-gnash -1 -D /path/output.raw@30 -P "Flashvars=content=textgoeshere" /path/input.swf

    Then I am attempting to use either Avconv / FFmpeg to convert the Raw video file to a MP4 :

    ffmpeg -i /path/input.raw -c:v libx264 -f rawvideo -c copy -map 0 /path/output.mp4

    or

    avconv -i /path/input.raw -b 128k /path/output.mp4

    both give me the error :

    invalid data found when processing input

    I am start to wonder if there is something wrong with my original SWF file. So here here are the files I am using for input. As you can see the txt file holds the variables that the SWF reads from.

    http://scottpaterson.ca/files/example1.swf

    http://scottpaterson.ca/files/example1.txt

    How can I convert this into an MP4 video ? Any help would be great, thanks in advance.

  • Command find and convert using ffmpeg

    16 avril 2023, par molwiko

    I would like to combine the two following commands to find mp4 files and convert them to mp3 and save them with same name.
The two command line :

    



    find ./ -name '*.mp4'
ffmpeg -i video.mp4 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 audio.mp3


    


  • FFmpeg - trim audio error, Could not find codec parameters ?

    27 novembre 2018, par wensefu

    I’m tring trim a audio file using ffmpeg,

    input info :

    input.mp3
    duration=264000, artist=xxx, album=yyy, audio_codec=mp3, filesize=4234952, title=aaa, chapter_count=0

    command :

    ffmpeg -i input.mp3 -ss 71.000 -t 91.900 -max_muxing_queue_size 1024 -acodec copy output.mp3

    and then I got error below :

    [mp3 @ 0xd170ca00] Could not find codec parameters for stream 0 (Audio: mp3, 44100 Hz, 2 channels, 128 kb/s): unspecified frame size
       Consider increasing the value for the 'analyzeduration' and 'probesize' options
    Guessed Channel Layout for Input Stream #0.0 : stereo**

    Can someone help me ? Many thanks.