Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (29)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (4073)

  • vc1dec : Disable dead code

    4 juin 2013, par Michael Niedermayer
    vc1dec : Disable dead code
    

    Fixes CID732197/6

    A assert is added to check that the disabled code wont
    be needed in the future.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/vc1dec.c
  • pexpect.run() terminates before ending ffmpeg without finishing the conversion

    24 novembre 2012, par Davisein

    I'm working on a python script that does a custom conversion of videos via ffmpeg.

    My problem is that the execution of ffmpeg stops suddenly after a bit of conversion (usually 3-4 mb out of 100mb) with a None exit code.

    I'm using the pexpect library. Currently I do not check the progress but I will in a close future. It seems that I am right using pexpect regarding these questions FFMPEG and Pythons subprocess and Getting realtime output from ffmpeg to be used in progress bar (PyQt4, stdout). This is the command that I'm running (I have checked that it's exactly this one)

    nice ffmpeg -i &#39;/full/path&#39; -s 640x360 -strict experimental -vcodec libx264
      -f mp4 -  coder 0 -bf 0 -refs 1 -flags2 -wpred-dct8x8 -level 30 -crf 26
      -bufsize 4000k -maxrate 350k -preset medium -acodec libvo_aacenc
      -ar 48000.0 -ab 128K -threads 2 -y &#39;/full/path/out&#39;

    I am using nice but I have tried also without it and the result ends up being the same.

    I'm running pexpect this way :

    output, exit = pexpect.run(self.command(), withexitstatus=True,\
                                      logfile=logfile)
    print output
    print exit

    Of course I have tried the same command on the command line and it works fine.

    Any clue on what might be happening ?

  • FFMPEG how to mux MJPEG encoded data into mp4 or avi container c++

    16 mai 2013, par p.streef

    I'm looking for a way to mux mjpeg (compressed) video data into a video container like mp4 or avi. (I'll also need to add audio in the future).
    Since i use FFMPEG in other parts of my project as well i'd like to do it using those libraries if possible.
    I'm not looking for command line FFMPEG use !
    I've tried to use the muxing example in ffmpeg with that i can only create a (very large) .mjpeg file with video information. This is not what I am looking for.

    Examples would be very welcome, but a pointer in the right direction also works !

    edit :
    I have output the yuvj422p stream to jpeg images and I want to put this into a mp4 container. Using ffmpeg commandline this works :

    ffmpeg -i yuvy%01d.jpg -vcodec mjpeg out.mp4

    I would like to do this directely in my code (without creating jpeg images first ofcourse)