Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (89)

  • Modifier la date de publication

    21 juin 2013, par

    Comment changer la date de publication d’un média ?
    Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
    Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
    Dans la rubrique "Champs à ajouter, cocher "Date de publication "
    Cliquer en bas de la page sur Enregistrer

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (13252)

  • Asking ffmpeg to extract frames at the original frame rate [closed]

    26 avril 2019, par Amelio Vazquez-Reina

    On the FFmpeg documentation (here, and here) I read that, by default, FFmpeg chooses to extract frames at 25 frames per second (otherwise you can specify a framerate with the -r option)

    My problem is that I have a folder with dozens of videos, each of them recorded at different frame rates, so my question is :

    Is there a way to ask FFmpeg to extract frames from a video at the "native" frame rate (i.e. the original frame rate at which the video was recorded) ?

    In case it matters, I am working with MP4 files

  • avformat/mpegenc - log error msgs for unsupported LPCM streams

    20 février 2018, par Gyan Doshi
    avformat/mpegenc - log error msgs for unsupported LPCM streams
    

    The MPEG-PS muxer only accepts PCM streams having up to 8 channels
    and the following sampling rates : 32/44.1/48/96 kHz.

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mpegenc.c
  • yt-dlp get audio only link -> ffmpeg piped audio -> ffplay

    5 juin 2022, par james28909

    Ok, i have a perl script that i am trying to figure out why it is throwing an io error. First i use yt-dlg to get the link of only the audio - this works as expected and i can navigate to the link in a browser just fine. then i open a ffmpeg pipe in perl and then try to read the output from ffmpeg and eventually, if i can get this working, i will process the ffmpeg output then send to a named pipe.

    &#xA;

    the problem comes from the ffmpeg when i am processing the data from the link obtained with yt-dlp, and i think it has to do with my while loop but i am not sure what. i have a named pipe called "input". i summon ffmpeg with the following :

    &#xA;

    #/usr/bin/perl&#xA;use strict;&#xA;use warnings;&#xA;&#xA;my $file = /path/to/named/pipe&#xA;my $read_len = 1024;&#xA;&#xA;open (my $SOURCE_AUDIO, &#x27;-|&#x27;, "ffmpeg -y -i \&#x27;$link\&#x27; -map 0 -c copy -ac 2 -f opus -ar 48000 pipe:1");&#xA;binmode($SOURCE_AUDIO);&#xA;&#xA;# process the ffmpeg output.i have a function i want to implement here, &#xA;# but i need to be able to parse ffmpeg output in set read lengths&#xA;&#xA;while( read($SOURCE_AUDIO, my $buf, $read_len)){&#xA;print $file $buf;&#xA;};&#xA;

    &#xA;

    but before the end of the playback, somewhere around the end of the audio stream ffmpeg throws errors like this :

    &#xA;

    [tls @ 0x5d0de00] Error in the pull function..2kbits/s speed=1.21x&#xA;[tls @ 0x5d0de00] IO error: Connection reset by peer&#xA;[tls @ 0x5d0de00] The specified session has been invalidated for some reason.&#xA;    Last message repeated 1 times&#xA;https://rr3---sn-(truncated): Input/output error&#xA;size=    1021kB time=00:01:18.36 bitrate= 106.7kbits/s speed=1.21x&#xA;video:0kB audio:1012kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.808163%&#xA;

    &#xA;

    i am not sure what is causing it to end early, or what is causing it to be terminated. i can download the file and re-encode it (if needed) and then play it flawlessly with ffplay, but i cannot, for the life of me, parse ffmpeg output and write it to a named pipe. any help sure would be appreciated. thanks

    &#xA;

    P.S. i am using latest updated windows 11 and WSL's built in perl :

    &#xA;

    This is perl 5, version 30, subversion 0 (v5.30.0) built for x86_64-linux-gnu-thread-multi&#xA;(with 50 registered patches, see perl -V for more detail)&#xA;&#xA;Copyright 1987-2019, Larry Wall&#xA;&#xA;Perl may be copied only under the terms of either the Artistic License or the&#xA;GNU General Public License, which may be found in the Perl 5 source kit.&#xA;&#xA;Complete documentation for Perl, including FAQ lists, should be found on&#xA;this system using "man perl" or "perldoc perl".  If you have access to the&#xA;Internet, point your browser at http://www.perl.org/, the Perl Home Page.&#xA;

    &#xA;