Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (57)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

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

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (9109)

  • avformat code produce slightly different output than ffmpeg with same parameters - why ?

    20 février 2020, par Daniel

    I would like to achieve the exact same result as this ffmpeg command line call does from code :

    ffmpeg -i CAMERARTSPLINK -c:v copy -an -movflags +frag_keyframe+empty_moov -f mp4

    When I run the above command it gives this binary result :

    got 36 bytes:  0, 0, 0, 36, 102, 116, 121, 112, ..., 111, 54, 109, 112, 52, 49,
    got 512 bytes: 0, 0, 3, 76, 109, 111, 111, 118, 0, 0, 0, ..., 132, 0, 0, 3, 0, 4, 0, 0, 3, 0, 202,

    The code can utilize ffmpeg libraries and includes, but I don’t want to use ffmpeg as a program call (i.e. exec* functions are not preferred).

    I have created a small demonstration code example with avformat for an RTSP H264 to MP4 remux.
    The code is highly reuses horgh’s nice videostreamer library.

    I posted the sample code to pastebin.com (400 loc). It builds successfully but you need to link it against avformat, avdevice, avcodec and avutil.

    I tried to do my best to reach the same result, however when I run this code, the first few bytes after byte #38 are different (maybe not just those, I did not compare anything after byte #548) :

    writeOutput: writing 36 bytes: 0, 0, 0, 36, 102, 116, 121, 112, ..., 111, 54, 109, 112, 52, 49,
    writeOutput: writing 512 bytes: 0, 0, 0, 0, 109, 111, 111, 118, 0, 0, 0, ..., 132, 0, 0, 3, 0, 4, 0, 0, 3, 0, 202,

    You can see on the second line of my code’s output starts with 0 0 0 0 109,

    whereas the ffmpeg gave 0 0 3 76 109.

    All the rest (even the bytes are not pasted here) data are totally the same (at least for the first 548 bytes).

    What is wrong with my code ? These 2 bytes seems super-important for decoding this stream.

  • What Does FFmpeg Exit Code -1073741819 Mean ?

    11 février 2020, par user2248702

    I’m using FFmpeg 4.2.2 on Windows to mix two audio tracks, however the filter I am using is causing FFmpeg to crash :

    ffmpeg -i 1.wav -i 2.wav -filter_complex asplit[a][b];[a]amix[c];[c][b]acrossfade 3.wav

    After running the command FFmpeg hangs for a couple of seconds then closes. Using echo %ERRORLEVEL% shows the error code is -1073741819, but I can’t seem to find anything on what it means.

  • ffmpeg code error in creating timelapse video from images

    18 juin 2021, par Ruiqing Wu

    My codes below used to work :

    


    ffmpeg -y -framerate 25 -start_number 0 -i "a_%08d.jpg" -c:v libx264 -vf scale=-1:1500 -pix_fmt yuv420p d:\mystars.mp4


    


    But it now shows error in my new computer with error :

    


    [image2 @ 000001ae31e2e600] Could find no file with path 'a_%08d.jpg' and index in the range 0-4
a_%08d.jpg: No such file or directory


    


    My images are under D:\mystars. All are jpg files named from a__00000000.jpg to a__00000099.jpg.

    


    May I have some advice here ?