Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (78)

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

  • Revision 085f76e535 : Add experimental VBR adaptation method. Add code to monitor over and under spen

    15 avril 2014, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_ratectrl.c


     Modify /vp9/encoder/vp9_ratectrl.h



    Add experimental VBR adaptation method.

    Add code to monitor over and under spend and
    apply limited correction to the data rate of subsequent
    frames. To prevent the problem of starvation or overspend
    on individual frames (especially near the end of a clip) the
    maximum adjustment on a single frame is limited to a %
    of its un-modified allocation.

    Change-Id : I6e1ca035ab8afb0c98eac4392115d0752d9cbd7f

  • how to save h264 stream into .264 file

    6 mars 2015, par user3547405

    I’m using nginx-rtmp-module build hls server, when I play it on safari, it does not shows image,then i use this command ffmpeg -i rtmp://192.168.4.213/hls/testH264 -c copy -map 0 -f segment -segment_list playlist.m3u8 -segment_time 5 output%03d.ts, it shows missing picture in access unit with size 28184,so i think maybe the raw h264 stream has some problem,then i directly save the h264 stream into .264 file,but when i play the .264 file with vlc,the screen is fuzzy,help

  • ffmpeg convert mp4 to mpg which can be played in a dvd player

    17 avril 2014, par Santhosh Yedidi

    I have seen that to convert a file to dvd player format using ffmpeg we use

             ffmpeg -i input.mp4  -target  ntsc-dvd  output.mpg

    the output.mpg will be played from usb in the tv.

    But the bitrate at which ntsc-dvd converts is very high. Because of which the size of the mpg is 5 times bigger than mp4.

    So i tried to convert manually

              ffmpeg -i input.mp4  -c:v mpeg2video  -q:v 5 -c:a ac3 -b:a 60k output.mpg

    the problem is the file gets converted with almost equal size as mp4 but without any sound. The audio codec of output.mpg shows ac3. Why ac3 is not having any sound.