Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

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

Autres articles (45)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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

Sur d’autres sites (7431)

  • ffmpeg very high bitrate when converting with libxvid

    8 août 2017, par DD3R

    I was using this batch file to drag and drop convert mkvs into avi, while letterboxing to 16:9 720p. It worked great, result was about 2-2.5 mbps bitrate file.

    Suddenly about two weeks ago it got really slow. Starts at 60000 kbps and quickly descends to about 8000 and then slowly continues going down. after 5 minutes of video it stabilizes at 5200 kbps. edit : after 13 minutes 3200 kbps and speed is still dreadful at 2x. It wasn’t very high before but it was about 5-6x Picture

    ffmpeg -i "%~1" -vf "scale=(iw*sar)*min(1280/(iw*sar)\,720/ih):ih*min(1280/(iw*sar)\,720/ih), pad=1280:720:(1280-iw*min(1280/iw\,720/ih))/2:(720-ih*min(1280/iw\,720/ih))/2" -c:v libxvid -qscale:v 3 -c:a libmp3lame -qscale:a 2 "%~1"-ws-va.avi

    changing qscale to 10 stabilizes bitrate at about 2300, but quality looks horrible, and speed isn’t increasing much.

    I didn’t update ffmpeg, any idea why this sudden change ?

  • Can't Stream Ogg From ffmpeg Through stdout

    16 janvier 2012, par dave mankoff

    To get the the crux of it, why does the first command work, but the second command does not. They produce slightly differently sized files with different contents :

    ffmpeg -i test.wav -f ogg -acodec libvorbis test.a.ogg

    ffmpeg -i test.wav -f ogg -acodec libvorbis - > test.b.ogg

    test.a.ogg will play properly and has no problems. test.b.ogg starts in the middle of the source audio and has stops and gaps in the audio. It also does not report the length of the track.

    I want to transcode source files on the fly into ogg for a program I am writing and I am trying to pipe the stdout from ffmpeg into my program. Putting the results into an intermediary file will kill performance since the transcoding is supposed to happen on demand.

  • Concatenating 30fps video with audio using ffmpeg

    29 juillet 2012, par Olumide

    In essence, my question is about how to specify the framerates of an input video file and the resulting, output video file when concatenating a video and an audio file.

    I am trying to concatenate a 30fps video with a 44k audio file but the video and audio parts of the result/output are out of synch. (This does not happen, or less obvious, when the framerate of the video is 24fps, suggests to me that ffmpeg has a default framerate.) I've tried specifying the framerate of the output video as well, like so

    ffmpeg -i inFile.avi -i audio.wav -b:v 2500k -r 30 outFile.mpg

    but that doesn't seem to help.

    What am I doing wrong ?