Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (33)

  • 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 ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • avformat/utils : Fix invalid NULL pointer operation in ff_parse_key_value()

    4 février 2022, par Michael Niedermayer
    avformat/utils : Fix invalid NULL pointer operation in ff_parse_key_value()
    

    Fixes : pointer index expression with base 0x000000000000 overflowed to 0xffffffffffffffff
    Fixes : 44012/clusterfuzz-testcase-minimized-ffmpeg_dem_HLS_fuzzer-5670607746891776

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/utils.c
  • ffmpeg and iis smooth streaming

    19 février 2015, par Andrey Pietrov

    I have a local iis instance with configured publishing point. The point is good I’ve tested it by Expression Encoder 4 Pro IIS smooth streaming feature.
    But when I’m trying to stream to is using ffmpeg, Silverlight player can`t play my stream - just buffering action in process. Here is my ffmpeg command

    ffmpeg -f dshow -i video="WebCam SC-13HDL11431N":audio="Microphone (Realtek High Definition Audio)" -movflags isml+frag_keyframe -threads 2 -c:a libvo_aacenc -c:v libx264 -preset fast -b:v 64k -bufsize 64k -flags +global_header -f ismv http://localhost/lf.isml/Streams(lf)

    Manifest file (http://localhost/lf.isml/manifest) is correct and available for Silverlight streaming but unfortunately player doesn’t play my stream.
    Any suggestion or help ? Maybe I’ve forgot some parameter in command ?

  • FFMPEG — Create New Audio File using aselect filter API call in C code

    17 juin 2021, par AfricanMamba

    I have been working on an a program in C that invokes the use of FFMPEG's libraries to remove some segments of audio from a given audio file. I have created the filter successfully using the API call, const AVFilter* aselect = avfilter_get_by_name("aselect"), linking it with abuffersrc and abuffersink.

    &#xA;

    However, I am not sure entirely sure what to pass in to the arguments when creating the filter because when I pass in the argument string, "&#x27;between(t,10,32)&#x27;, asetpts = N/SR/TB output.wav", it gives me an error saying : "Invalid chars &#x27;,asetpts=N/SR/TBoutput.wav&#x27; at the end of expression"

    &#xA;

    But when I pass in just "&#x27;between(t,10,32)&#x27;" as the arguments for the filter, the program compiles and runs but no output file is created with just the audio from 10 seconds to 32 seconds. Does anyone happen to know if it is even possible to use the aselect filter API to create new audio files or if there is an example that exists showing how to copy only frames from one audio file to another ? Thanks !

    &#xA;