Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (81)

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

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

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

Sur d’autres sites (6194)

  • Linux Platform : Enlarge video screen size N times

    27 janvier 2012, par Susan Mayer

    I am looking for a application on Linux platforms (Ubuntu/CentOS etc) that can enlarge video size N times. N could be any number, like 1.5, 4 etc

    For example, if I have a video with screen size 100*200, I want to make it 1.5 times larger, that will be : 150*300. Of course, I will expect the video quality to drop but it doesnt matter.

    I am not sure whether ffmpeg has this function but a quick Google lands me nowhere. So I am here now.

    Thanks a lot !

  • How to avoid a growing delay with ffmpeg between sound and raw video data ?

    13 novembre 2011, par roland

    Hello everybody and thank you for reading !

    Here is my problem : I have a program piping raw video frames to the standard output. This program is using OpenCV to capture and process the video and outputs directly the processed frames. The loop is synced to the framerate I chose. I'm using ffmpeg to read from the standard input and everything works fine for the video.
    But now that I added the sound I have a big problem : a growing delay is occuring and I really need to get rid of it. So here is my idea, but I really need your help :

    I have to find a way to include a timestamp information to the raw video. To be understandable by ffmpeg, it needs to be a known raw video compatible container. And then I will need to use the container API and pipe it to the standard output in my program. I really do not know what to use in the jungle of video formats and codecs, and I don't event know how to enable timestamp synchronizing in ffmpeg...

    If anyone has an idea, i am really interested here. For information, here is the command line i use to pipe the raw video :

    ./myprogram | ffmpeg -y -f alsa -i pulse -ac 2  -f rawvideo -vcodec rawvideo -r 24 -s 640x480 -pix_fmt bgr24 -i - -vcodec libx264 -pix_fmt yuv420p -r 24 -f flv -ar 44100 out.flv;

    Thand you very much,

    Roland

  • ffmpeg video encoding for mobile devices

    27 janvier 2012, par TimGL

    I'm trying to encode the video file from f4v to mp4 for mobile devices and using 2 different ffmpeg versions with the same configuration files. Encoding goes ok for both files. The one that I convert using ffmpeg version N-32754-g936d4d4-Sherpya failing to play on my blackberry.
    This is the command line that I'm using :

    ffmpeg.exe -i some.avs -vcodec libx264 -b 500k -r 24 -acodec libfaac -ab 128k -ar 48000 -ac 2 -threads 0 -coder 0 -bf 0 -refs 1 -level 30 -maxrate 10000000 -bufsize 10000000 -y test.mp4

    The vido playes ok when I convert it using FFmpeg version SVN-r13712
    Could you give me some light on where the issue couls be ?