Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (111)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (4697)

  • RTMP ubuntu server for streaming

    2 mai 2021, par adammartiska

    In our school team we are trying to achieve one thing - user is being recorded on camera, this camera is sending feed on server (our school gave us Ubuntu server, that we can access through cmd ssh), and this server is forwarding feed for some public ip (server ip), which clients can access in their application. We tried to do nginx live streaming server with rmtp module but with no success. Now we are stuck on properly configuring ffserver ( which in our case might be the best solution ) however we can't get to work streaming through ffmpeg. We can start ffserver successfully, but when we want to stream with ffmpeg there is error : Connection to tcp://<serveripadress>:8090 failed: Connection refused</serveripadress>. Does anyone know what might cause this ? Or is here some more simple solution for our cause ? Is it even possible to manipulate with server ip and ports if we have only ssh access to this server (on port 2233) ?&#xA;Thanks for every response in advance :)

    &#xA;

  • HTML mp4 Streaming / How can I automatically move the "atom moov" to the beginning of the file ?

    29 octobre 2020, par Einkornwolf

    so I am currently building a Website for School and implemented an Upload-System. Now I want People to be able to watch uploaded Videos. Currently if you try to watch a Video, lets say test.mp4 it takes over a minute to load. I know that using : ffmpeg -i inputvideo.mp4 -movflags faststart -acodec copy -vcodec copy outputvideo.mp4 moves the atom moov to the beginning of the file. And when I manually convert the mp4 using the previous command the file starts playing instantly. But now my problem is, that I don't want to convert each file manually. Is there another way of playing user-uploaded Videos instantly ? Thanks for your help in advance.

    &#xA;

    I am using this Code, but it has nothing to do with the streaming itself I guess :

    &#xA;

      <source src="Clap.mp4" type="video/mp4">&#xA;Your browser does not support the video tag. &#xA;&#xA;</source>

    &#xA;

    I also tried to use a js library :

    &#xA;

      &#xA;&#xA;  &#xA;  <code class="echappe-js">&lt;script src=&quot;https://vjs.zencdn.net/ie8/1.1.2/videojs-ie8.min.js&quot;&gt;&lt;/script&gt;&#xA;&#xA;&#xA;&#xA;  &#xA;    &#xA;    &#xA;    

    &#xA; To view this video please enable JavaScript, and consider upgrading to a&#xA; web browser that&#xA; supports HTML5 video&#xA;

    &#xA; &#xA;&#xA; &lt;script src=&quot;https://vjs.zencdn.net/7.8.4/video.js&quot;&gt;&lt;/script&gt;&#xA;&#xA;

    &#xA;

    In both cases I want to play Clap.mp4

    &#xA;

  • Need help combining commands in to a script to run in Ubuntu

    17 juin 2020, par user298294

    I have a bunch of video files with DTS audio that I need to convert to AC3. I have found commands that can do different parts of the task but I'm not sure how to put it all together to make a script that works. I have found the following script that will convert the audio from all my files to AC3 however I would prefer for it to only convert the DTS audio files to AC3. The script is as follows.

    &#xA;&#xA;

    shopt -s globstar&#xA;for f in **/*.mkv; &#xA;do &#xA;    fname="${f##*/}"&#xA;    ffmpeg -i "$f" -c:v copy -c:s copy -c:a ac3 "/some/directory/$fname" &amp;&amp;&#xA;    mv "/some/directory/$fname" "$f"&#xA;done&#xA;

    &#xA;&#xA;

    I have also found this command that will return what sort of audio codec the mkv file is using.

    &#xA;&#xA;

    `ffprobe -v error -select_streams a:0 -show_entries stream=codec_name -of default=nokey=1:noprint_wrappers=1 input.mkv`&#xA;

    &#xA;&#xA;

    So I'm wondering how I can combine the two to create a script that will do what I want it to do. I'm guessing I can add an if function using ffprobe at the beginning of the script ? Something like this...

    &#xA;&#xA;

    shopt -s globstar&#xA;for f in **/*.mkv; &#xA;do &#xA;    fname="${f##*/}"&#xA;    if ffprobe -v error -select_streams a:0 -show_entries stream=codec_name -of &#xA;       default=nokey=1:noprint_wrappers=1 "$f" | egrep "DTS"; then&#xA;       ffmpeg -i "$f" -c:v copy -c:s copy -c:a ac3 "/some/directory/$fname" &amp;&amp;&#xA;       mv "/some/directory/$fname" "$f"&#xA;    fi&#xA;done&#xA;

    &#xA;&#xA;

    Are there any problems with that ? I haven't written scripts since I was in high school playing around with my graphics calculator because I was bored so any help would be greatly appreciated.

    &#xA;