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)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8979)

  • Split video in specific number of frame with ffmpeg in c#

    1er août 2017, par Loic Bch

    I want to split a video into a specific number of image :
    I’m using ffmpeg/EmguCV in C#.

    I capture a video from a webcam and i need to split the video into 59 images. i’m using -i command with ffmpeg to split my video into a number of images.

    The problem is that the number of images i get at the end is different at each capture because the duration of the video is not exactly the same due to fps drop.

    So if anyone know if it’s possible to specify that i want the video to be equally cut into 59 images. (Or any other idea to get what i want)

    (at the moment i’m taking the number of images i get from the cut and divide it by 59 then i’m taking one image in "the result" but i’ts not precise at all because if i get a decimal number im losing or adding images)

  • Location of the amd64 compiler in Visual Studio 2022 | Compiling FFmpeg with NVENC

    6 juin 2022, par Gal Grünfeld

    I'm trying to follow Nvidia's guide to compile FFmpeg with nvenc support on Windows and it has a stage to export the path of Visual Studio's 2013 SP2 amd64 compiler to the global path variable of the compilation dev environment :

    


    


    export PATH="/c/Program Files (x86)/Microsoft Visual Studio 12.0/VC/BIN/amd64/" :$PATH

    


    


    They say earlier in the guide that for different versions of Visual Studio different path might be required. I'm trying to use Visual Studio 2022 Community, but don't know where its amd64 compiler directory is.
I also don't know what that VC stands for ("Visual C", maybe, whatever that "Visual" might mean ?).

    


    I found in the installation directory of Visual Studio 2022 a few directories named amd64 but none of them were under one with VC or something similar in its name.
The one I think is the most likely candidate to be the updated compiler is at /MSBuild\Current\Bin\amd64.

    


    If anyone knows, please tell me if if this is the right path, and if not, what is the right path.

    


    Microsoft does offer a version of Visual Studio 2013 Update 2, though (I assume they changed their naming scheme from "service packs" to "updates, which would make it the same software), but it doesn't offer a 64-bit version of it, and I want to compile a 64-bit software - so I assume it doesn't come with one. Please do correct me if I'm wrong, it'd save me needing to use a version of Visual Studio that is different than the one in the guide.

    


  • FFMPEG works in command line but not in exec(), it returns 127

    26 février 2015, par Felipe Schenone

    The command is

    ffmpeg -i path/to/video.avi path/to/video.mpg

    and it works fine from the command line. However, when I call it with PHPs exec(), the return value is 127, it doesn’t seem to detect FFMPEG. What am I doing wrong ? I’m in localhost and the safe mode is off, but I’m new to both FFMPEG and exec(), so it may be a noob mistake. Thanks in advance.