Recherche avancée

Médias (91)

Autres articles (97)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • ffmpeg 10.04 Could Not Find Codec Parameters [closed]

    12 février 2015, par Dmitry

    I am getting an error while executing the command
    ffmpeg -i /path/to/video.mp4 :

     ffmpeg version git-2012-07-24-93342de Copyright (c) 2000-2012 the FFmpeg developers
         built on Jul 24 2012 23:55:41 with gcc 4.4.3 (Ubuntu 4.4.3-4ubuntu5.1)
         configuration: --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libx264 --enable-gpl --enable-nonfree --enable-postproc --enable-swscale --enable-vdpau --enable-version3 --enable-libtheora --enable-libvorbis --enable-libvpx --enable-x11grab
         libavutil      51. 65.100 / 51. 65.100
         libavcodec     54. 44.100 / 54. 44.100
         libavformat    54. 20.100 / 54. 20.100
         libavdevice    54.  2.100 / 54.  2.100
         libavfilter     3.  3.100 /  3.  3.100
         libswscale      2.  1.100 /  2.  1.100
         libswresample   0. 15.100 /  0. 15.100
         libpostproc    52.  0.100 / 52.  0.100
       [mov,mp4,m4a,3gp,3g2,mj2 @ 0x2a1b240] Could not find codec parameters for stream 0 (Video: h264 (avc1 / 0x31637661), 1280x720): unspecified pixel format
       Consider increasing the value for the 'analyzeduration' and 'probesize' options
       /path/to/video.mp4: could not find codec parameters
  • ffmpeg 10.04 Could Not Find Codec Parameters [closed]

    12 février 2015, par Dmitry

    I am getting an error while executing the command
    ffmpeg -i /path/to/video.mp4 :

     ffmpeg version git-2012-07-24-93342de Copyright (c) 2000-2012 the FFmpeg developers
         built on Jul 24 2012 23:55:41 with gcc 4.4.3 (Ubuntu 4.4.3-4ubuntu5.1)
         configuration: --enable-libfaac --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libx264 --enable-gpl --enable-nonfree --enable-postproc --enable-swscale --enable-vdpau --enable-version3 --enable-libtheora --enable-libvorbis --enable-libvpx --enable-x11grab
         libavutil      51. 65.100 / 51. 65.100
         libavcodec     54. 44.100 / 54. 44.100
         libavformat    54. 20.100 / 54. 20.100
         libavdevice    54.  2.100 / 54.  2.100
         libavfilter     3.  3.100 /  3.  3.100
         libswscale      2.  1.100 /  2.  1.100
         libswresample   0. 15.100 /  0. 15.100
         libpostproc    52.  0.100 / 52.  0.100
       [mov,mp4,m4a,3gp,3g2,mj2 @ 0x2a1b240] Could not find codec parameters for stream 0 (Video: h264 (avc1 / 0x31637661), 1280x720): unspecified pixel format
       Consider increasing the value for the 'analyzeduration' and 'probesize' options
       /path/to/video.mp4: could not find codec parameters
  • ffmpeg can't find files using C ? [closed]

    14 décembre 2019, par Edoardo Colella

    I tried to use ffmpeg concatenation with popen command in C but I get "No such file or directory". If I use Linux terminal with the same command it works.

    C code :

    fp=popen("ffmpeg -i \"concat : audio/1.mp3|audio/2.mp3\" -acodec copyoutput.mp3", "r") ;
    pclose(fp) ;

    Error in Linux shell :
    audio/1.mp3|audio/2.mp3 No such file of directory found

    What could be the problem ?