Recherche avancée

Médias (91)

Autres articles (72)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

Sur d’autres sites (5367)

  • Specifying correct library to link in Xcode when multiple copies exist on search path

    23 avril 2015, par Robotbugs

    I am trying to compile a C++ file that depends on ffmpeg. I have spent a long time trying to fix all the link errors. I found that on the Mac it needs :

    libbz2.dylib
    libiconv.dylib
    libz.dylib
    libavcodec.a
    libavformat.a
    libswscale.a
    libswresample.a
    VideoDecodeAcceleration.framework
    CodeVideo.framework
    CoreFoundation.framework

    The problem I have is that I still get symbol link errors for libiconv even though the library is present in /usr/lib and all the other libraries in this directory are being found there. The compile line includes -liconv.2

    On searching around I found that the problem comes from there being two version of libiconv on my system. One is in /usr/lib and the other is in /opt/local/lib. The one in /usr/lib exports symbols that ffmpeg uses named like "_iconv_open", whereas the one in /opt/local/lib exports the same symbols with "lib" added, e.g. "_libiconv_open". It seems the compiler is picking up the /opt/local/lib library.

    How can I get Xcode to pick up the correct lib ?

  • FFMpeg attach two mp3 file to eachother, length and metadata not correct

    12 mars 2017, par pocek

    Is there any way to attach two mp3 or ogg or mp4 files to eachother using ffmpeg ?

    I mean for example i have 2 mp3 files, the output i need is to listen the first one and after it finished, second file plays.

    so duration for output would be the duration for first + second file.

    I’ve tried this code but the output is not correct

    ffmpeg -i "concat:file1.mp3|file2.mp3" -acodec copy output.mp3

    the metadata is not new for this output file and plays just first file !

  • Which is the correct key frame intervall settings for ffmpeg stream to Periscope

    28 février 2017, par Memo Can

    I will stream to Periscope with ffmpeg.
    The requirements of Periscope are :

    •Framerate : 30fps
    •Keyframe interval : every 2 seconds (OBS) or Keyframe every 45 frames (Wirecast)

    I have follew ffmpeg command line :

    ffmpeg -i INPUT -deinterlace -c:v libx264 -pix_fmt yuv420p -s 960x540 -preset superfast -vb 1200k -maxrate 1200k -r 30  -bufsize 8000k  -c:a aac -b:a 96k -ar 44100 -ac 2 -f flv rtmp://de.pscp.tv:80/xxxxxxxxx

    How can i set

    Keyframe interval: every 2 seconds (OBS) or Keyframe every 45 frames (Wirecast)  

    on this command line