Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (81)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

  • aac : Split function to parse ADTS header data into public and private part

    26 avril 2017, par Diego Biurrun
    aac : Split function to parse ADTS header data into public and private part
    

    This makes the currently semi-public avpriv_aac_parse_header() function
    private to libavcodec and adds a proper public API function to return
    the parts of the ADTS header required in libavformat.

    • [DBH] configure
    • [DBH] doc/developer.texi
    • [DBH] libavcodec/Makefile
    • [DBH] libavcodec/aac_adtstoasc_bsf.c
    • [DBH] libavcodec/aac_parser.c
    • [DBH] libavcodec/aacdec.c
    • [DBH] libavcodec/adts_header.c
    • [DBH] libavcodec/adts_header.h
    • [DBH] libavcodec/adts_parser.c
    • [DBH] libavcodec/adts_parser.h
    • [DBH] libavformat/spdifdec.c
    • [DBH] libavformat/spdifenc.c
  • ffmpeg, first second of cut video part freezed

    12 avril 2017, par Hugo

    I need to split video produced by raspivid ( rasbperry pi rasbian video output h264 ) into two parts and second part is always starting with about one second long frozen image. Based on what i found problem is in keyframes.

    I did try following solutions i found :

    • use -ss parameter before -i which should use only keyframes to split - not working, result is same when -ss is before or after -i
    • i did try to extract exact keyframe using ffprobe and to use value pkt_dts_time to specify exact microsecond to split video - again result is same, video is starting with frozen image

    I also try to use -vcodec copy option for both methods but again - result is exactly the some. Only difference i see is delay how long is inicial picture frozen.

  • record every step of selenium test case to a video proplem

    16 février 2017, par user7574253

    i use pytest and selenium to test web site, i am writing a base class, every test case run should be recording to a video, so i can see the fail test case in the video and know what’s happing. below is my code

    ffmpeg_command = os.environ['ffmpeg_command']
    video_base_path = os.environ['video_base_path']


    class BaseRecordTest(BaseTest):
       def set_up_00(self, method):

           # video save path should be "base path" + "test case module path" +      "test case class" + "test case name"
           module_name = self.__module__
           if module_name == '__main__':
                filename = sys.modules[self.__module__].__file__
                module_name = os.path.splitext(os.path.basename(filename))[0]
           module_path = module_name.replace('.', '\\')
           dir_name = video_base_path + module_path
           if not os.path.exists(dir_name):
               os.makedirs(dir_name)

           video_path = dir_name + '\{}-{}.avi'.format(self.__class__.__name__,   method.__name__)

           if os.path.exists(video_path):
               os.remove(video_path)

           process = Popen(
           "{} {}".format(ffmpeg_command, video_path),
           shell=True, stdout=PIPE, stderr=PIPE)
           self.__process = process

       def tear_down_99(self, method):
           # self.__process.terminate()
           # os.killpg(self.__process.pid, signal.CTRL_C_EVENT)
           os.kill(self.__process.pid, signal.CTRL_C_EVENT)
           # terminate(self.__process)

    my system is windows 10 , i have try send signal to kill the recording process, but if use Popen terminate or kill method , the ffmpeg_command does not real stop, if send ctrl_c_event signal, video can be saved but the next test case not execute forever, so i want to ask there is a way to resolve this, that can execute each case and each case execute process can be recording to a vedio, thanks !

    ffmpeg cammand like that :

    D:\\ffmpeg-20170214-8fa18e0-win64-static\\bin\\ffmpeg -video_size 1366x768 -f gdigrab -offset_x 0 -offset_y 0 -framerate 60 -i desktop