Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (83)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (13851)

  • avcodec/proresenc_anatoliy : Mark impossible case as unreachable

    3 octobre 2021, par Andreas Rheinhardt
    avcodec/proresenc_anatoliy : Mark impossible case as unreachable
    

    Alternative fix for fix Coverity issue 1440385 (instead of
    6106177ad66ab28f44520534f386239d2405eeab).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/proresenc_anatoliy.c
  • Issue with ffmpeg command : Copying video and audio streams

    27 juillet 2023, par sadra hoseini

    I am trying to use ffmpeg to copy both the video and audio streams from an input file to an output file without any re-encoding. I have used the following command :

    &#xA;

    ffmpeg -i "file.mp4" -c:v copy -c:a copy "Path.mp4"&#xA;

    &#xA;

    However, I'm encountering an issue, and the command doesn't seem to work as expected. The output file is not being generated or the process terminates with an error. I've checked that "file.mp4" exists, and "Path.mp4" is the intended output path.

    &#xA;

    Could someone please help me identify what might be causing this problem ? Are there any common pitfalls with the -c:v copy and -c:a copy options that I should be aware of ? If there are any alternative approaches to copy both video and audio streams without re-encoding, I'd appreciate learning about those as well.

    &#xA;

    Thank you for your assistance !

    &#xA;

  • how to copy mp4 file generated by FFMPEG spawn using another FFMPEG spawn

    2 mai 2021, par Abadi

    I am using the following code that records screen on Linux and the output is an mp4 file.

    &#xA;

    const transcodeStreamToOutput = spawn(&#x27;ffmpeg&#x27;,[&#xA;&#x27;-hide_banner&#x27;,&#xA;&#x27;-loglevel&#x27;, &#x27;error&#x27;,&#xA;// disable interaction via stdin&#xA;&#x27;-nostdin&#x27;,&#xA;// screen image size&#xA;&#x27;-s&#x27;, `${BROWSER_SCREEN_WIDTH}x${BROWSER_SCREEN_HEIGHT}`,&#xA;// video frame rate&#xA;&#x27;-r&#x27;, `${VIDEO_FRAMERATE}`,&#xA;// hides the mouse cursor from the resulting video&#xA;&#x27;-draw_mouse&#x27;, &#x27;0&#x27;,&#xA;// grab the x11 display as video input&#xA;&#x27;-f&#x27;, &#x27;x11grab&#x27;,&#xA;    &#x27;-i&#x27;, `${DISPLAY}`,&#xA;// grab pulse as audio input&#xA;&#x27;-f&#x27;, &#x27;pulse&#x27;,&#xA;    &#x27;-ac&#x27;, &#x27;2&#x27;,&#xA;    &#x27;-i&#x27;, &#x27;default&#x27;,&#xA;// codec video with libx264&#xA;&#x27;-c:v&#x27;, &#x27;libx264&#x27;,&#xA;    &#x27;-pix_fmt&#x27;, &#x27;yuv420p&#x27;,&#xA;    &#x27;-profile:v&#x27;, &#x27;main&#x27;,&#xA;    &#x27;-preset&#x27;, &#x27;veryfast&#x27;,&#xA;    &#x27;-x264opts&#x27;, &#x27;nal-hrd=cbr:no-scenecut&#x27;,&#xA;    &#x27;-minrate&#x27;, `${VIDEO_BITRATE}`,&#xA;    &#x27;-maxrate&#x27;, `${VIDEO_BITRATE}`,&#xA;    &#x27;-g&#x27;, `${VIDEO_GOP}`,&#xA;// apply a fixed delay to the audio stream in order to synchronize it with the video stream&#xA;&#x27;-filter_complex&#x27;, &#x27;adelay=delays=1000|1000&#x27;,&#xA;// codec audio with aac&#xA;&#x27;-c:a&#x27;, &#x27;aac&#x27;,&#xA;    &#x27;-b:a&#x27;, `${AUDIO_BITRATE}`,&#xA;    &#x27;-ac&#x27;, `${AUDIO_CHANNELS}`,&#xA;    &#x27;-ar&#x27;, `${AUDIO_SAMPLERATE}`,&#xA;// adjust fragmentation to prevent seeking(resolve issue: muxer does not support non seekable output)&#xA;&#x27;-movflags&#x27;, &#x27;frag_keyframe&#x2B;empty_moov&#x27;,&#xA;// set output format to mp4 and output file to stdout&#xA;&#x27;-f&#x27;, &#x27;mp4&#x27;, &#x27;-&#x27;&#xA;]&#xA;

    &#xA;

    ) ;

    &#xA;

    I need to run ffmpeg -i captured.mp4 -c copy new.mp4 using another spawn process on the output.&#xA;I tried the following :

    &#xA;

    const newStdOut =  spawn(&#x27;ffmpeg&#x27;,[&#xA;&#xA;    &#x27;-i&#x27;, `${transcodeStreamToOutput.stdout}`, &#xA;    &#x27;-codec:v&#x27;, &#x27;copy&#x27;, &#xA;    &#x27;-codec:a&#x27;, &#x27;copy&#x27;, &#xA;    &#x27;-f&#x27;, &#x27;mp4&#x27;, &#x27;-&#x27;&#xA;    ]&#xA;);&#xA;

    &#xA;

    But it is not working. I would appreciate any help.

    &#xA;