Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (37)

  • 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

  • L’espace de configuration de MediaSPIP

    29 novembre 2010, par

    L’espace de configuration de MediaSPIP est réservé aux administrateurs. Un lien de menu "administrer" est généralement affiché en haut de la page [1].
    Il permet de configurer finement votre site.
    La navigation de cet espace de configuration est divisé en trois parties : la configuration générale du site qui permet notamment de modifier : les informations principales concernant le site (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (8018)

  • avformat/mpegtsenc : add registration descriptor for AC-3 and EAC3

    23 août 2020, par Limin Wang
    avformat/mpegtsenc : add registration descriptor for AC-3 and EAC3
    

    Some DVB and ATSC captures are using the official MPEG2 registration
    descriptor in addition to using the correct stream type and the
    AC-3_audio_stream_descriptor/AC3_descriptor. So let's add it even if it is not
    strictly needed for DVB/ATSC.

    Reviewed-by : Marton Balint <cus@passwd.hu>
    Signed-off-by : Limin Wang <lance.lmwang@gmail.com>

    • [DH] libavformat/mpegtsenc.c
  • Which version of ffmpeg is newer ffmpeg-N-100679-g24dc6d386c or ffmpeg-N-4.3.1 ?

    2 février 2021, par Tanishq Banyal

    For my app i need FFmpeg, so i went to official website, for windows builds it said go here :-&#xA;https://github.com/BtbN/FFmpeg-Builds/releases/tag/autobuild-2021-01-20-13-01

    &#xA;

    But now i have a problem.&#xA;Which version of ffmpeg is newer ?

    &#xA;

    ffmpeg-N-100679 or ffmpeg-n4.3.1-29 ?

    &#xA;

    Is that "N" version unstable and "n4" version stable ?

    &#xA;

    Any help would be appreciated

  • NReco ffmpeg library error

    19 janvier 2016, par agurodriguez

    I’m using NReco.VideoConverter for a video converting application. Now I’m trying to replace the audio in the source video for an mp3 track. I’m using this snippet from the official site : http://www.nrecosite.com/video_converter_net.aspx but I receiving this error :

    audio.mp3 : Invalid data found when processing input (exit code : 1)

    var ffmpeg = new NReco.VideoConverter.FFMpegConverter();
    ffmpeg.ConvertMedia("video.mp4", null, "output_video.mp4", null, new ConvertSettings() {
     AudioCodec = "copy", VideoCodec = "copy",
     CustomInputArgs = String.Format(" -i \"{0}\" ", "audio.mp3"),
     CustomOutputArgs = " -map 0 -map 1",
    });

    I tried with different audio files but still the same scenario.

    Hope you can help me !
    Regards