Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (22)

  • 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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (7044)

  • How can I use a pointer to a pointer in c# ?

    24 juin 2013, par user91986

    I am using C# in Visual Studio 2012 to call a function that is included in a set of external libraries that my project requires. The function requires a double pointer to be passed in but I'm not sure of the exact syntax. Single pointers work great for me. I am using the unsafe keyword.

    AVFormatContext _file = new AVFormatContext();

    fixed (AVFormatContext* p_file = &_file)
    {
      avformat_alloc_output_context2(&p_file,null,null,filename);
    }

    VS is complaining about the "&p_file" syntax with the error of "Cannot take the address of a read-only local variable".

    Any help would be much appreciated !

  • Split 1 video with 16 audio into 16 unique video (each with 1 audio) and push to YT + FB ?

    24 avril 2017, par Haseeb

    We have SDI input using Black Magic studio express, using just one source stream with 1 video + 16 audio channels, we want to push this stream as 16 video streams. is it possible to split this video with 16 audio into 16 unique video (each with 1 audio) and push to YT + FB ?

  • How can I speed up Raspberry Pi to YouTube stream ?

    31 juillet 2021, par RDowns

    I am using a Raspberry Pi 4 2GB to live stream to YouTube.

    


    The performance is pretty poor at the moment as I am trying to go through terminal and I feel the setting's are not correct. Performance is OK however if I go directly through YouTube studio and use the 'Webcam' option instead of 'Stream'.

    


    These are the settings that I am currently using :

    


    raspivid -o - -t 0 -vf -hf -fps 30 -b 6000000 | ffmpeg -threads 0 -f v4l2 -i /dev/video0 -ar 44100 -ac 2 -acodec pcm_s16le -f s16le -ac 2 -i /dev/zero -acodec aac -ab 128k -strict experimental -s 640x480 -b 6000000 -aspect 16:9 -vcodec h264_omx -vb 820k -pix_fmt yuv420p -g 60 -r 30 -f

    


    What options can I change in this command to give better performance ?