Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (81)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

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

Sur d’autres sites (8120)

  • How to configure X264 build before running make on OS X

    18 octobre 2013, par user1884325

    I'm trying to build an X264 executable which will run on any MAC OS X (>10.6) without any external dependencies. I downloaded the latest stable snapshot x264-snapshot-20131017-2245-stable.

    I haven't been able to find a lot of documentation on the build procedure for x264 on OSX.

    When I just run ./configure —disable-opencl and then make, I get several output files :

    x264
    libx264.a
    .depend
    x264.o

    I assume that the executable can run without the other files ?

    Anyway, I tested the x264 in a terminal and at first it seemed to work, but when I try to
    start x264 as a quiet background process like this :

    ./x264 —quiet —profile baseline —level 3.2 —preset ultrafast —bframes 0 —force-cfr —no-mbtree —sync-lookahead 0 —rc-lookahead 0 —intra-refresh —input-csp rgb —fps 15 —input-res 1280x720 —bitrate 1100 —vbv-maxrate 1100 —vbv-bufsize 600 —threads 1 -o - -

    nothing happens at all. If I go to Activity Monitor I should see x264 running, but it's not there.

    Looong story short : How should the x264 build be configured before running make ??? I do not want to use openCL (—disable-opencl)

  • FFMPEG command not running in script

    5 novembre 2012, par viv

    I have created a shell script to convert video, the command is working properly inside the shell script if the file to be converted is in the current directory, whereas if the file is inside directory then i am getting error.
    When I echoed the command inside script and ran it manually then it's running properly.

    Below is the command :

    ffmpeg -i $1 -strict experimental -vcodec libx264 -vf "scale=-1:$video_height" -y $tmp_file 2>&1

    Any ideas ?

  • close the running application in vb.net from background

    22 janvier 2016, par TOM

    i want to stop the running (ffmpeg) process from background . i use the

     process.kill()  

    i wrote the code . but in this process the output file is getting corrupted.

    Dim pProcess() As Process = Process.GetProcesses
     For Each p As Process In pProcess
      If p.ProcessName = "ffmpeg" Then
       p.WaitForExit(1000)
       p.Kill()      
       p.Close()
     End If
    Next

    is there any other method to terminate the process without file being corrupt

    thanks