Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (53)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7687)

  • Trouble requesting ffmpeg with pydub on Synology NAS

    9 mai 2019, par Marcus

    I have a Python script on my Synology which should make use of ffmpeg in combination with pydub. I installed ffmpeg via the community packages but when I run my script which runs smoothly on my local machine I get the shown error

    Already tried to define the absolute path of ffmpeg but didn´t work.

    /usr/lib/python2.7/site-packages/pydub/utils.py:193: RuntimeWarning: Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work
     warn("Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work", RuntimeWarning)
    Traceback (most recent call last):
     File "./track_append.py", line 30, in <module>
       artist_track = artist_track = AudioSegment.from_file(track_original)
     File "/usr/lib/python2.7/site-packages/pydub/audio_segment.py", line 665, in from_file
       info = mediainfo_json(orig_file)
     File "/usr/lib/python2.7/site-packages/pydub/utils.py", line 263, in mediainfo_json
       res = Popen(command, stdin=stdin_parameter, stdout=PIPE, stderr=PIPE)
     File "/usr/lib/python2.7/subprocess.py", line 711, in __init__
       errread, errwrite)
     File "/usr/lib/python2.7/subprocess.py", line 1343, in _execute_child
       raise child_exception
    OSError: [Errno 2] No such file or directory
    </module>
  • Ubuntu12.04 : libavformat header trouble when compiling C program

    30 mai 2013, par Juneyoung Oh

    My code is super simple, just include "avformat.h" and call "av_register_all".

    full code is below.

     1 #include
     2 #include
     3 #include
     4 //#include <libavcodec></libavcodec>avcodec.h>
     5 #include <libavformat></libavformat>avformat.h>
     6 //#include "libavcodec/avcodec.h"
     7 //#include "libavformat/avformat.h"
     8
     9
    10 int main (int argc, char* argv[]){
    11         av_register_all();
    12 /*
    13         AVFormatContext* pFormatCtx;
    14         const char* filename = "/home/juneyoungoh/Videos/CON1234ID.ts";
    15
    16         if(av_open_input_file(&amp;pFormatCtx, filename, NULL, 0, NULL) != 0)
    17         {
    18                 handle_error();
    19         }
    20
    21         if(av_find_stream_info(pFormatCtx) &lt; 0)
    22         {
    23                 handle_error();
    24         }
    25
    26         dump_format(pFormatCtx, 0, filename, 1);
    27
    28         //av_get_audio_frame_duration();
    29 */
    30         return 0;
    31 }

    The problem is when I compile this in Terminal it show error.

    /tmp/ccvgpGjv.o: In function `main&#39;:
    getDuration.c:(.text+0x10): undefined reference to `av_register_all&#39;
    collect2: ld returned 1 exit status

    my avformat.h file is in /usr/local/include/libavformat/avformat.h.

    Here is something I have already tried.

    1. gcc getDuration.c
    2. gcc -I/usr/local/include/ getDuration.c
    3. gcc -I/usr/local/include/libavformat/ getDuration.c
    4. gcc -L/usr/local/include/ getDuration.c
    5. gcc -L/usr/local/include/libavformat/ getDuration.c
    6. gcc getDuration.c -lavformat

    Give me the light of hope +_+

  • Having trouble streaming video with FFmpeg over TCP on Windows [closed]

    8 mars 2024, par Tharunkumar Ampolu

    I'm trying to stream a video using FFmpeg over TCP on a Windows system. I'm using the following command

    &#xA;

    ffmpeg -i video.mp4 -f mpegts tcp://192.168.24.3:2000?listen&#xA;&#xA;

    &#xA;

    However, I encounter the following errors :

    &#xA;

    Error opening output tcp ://192.168.24.3:2000 ?listen : Error number -10049 occurred&#xA;Error opening output file tcp ://192.168.24.3:2000 ?listen.&#xA;Error opening output files : Error number -10049 occurred

    &#xA;

    I attempted to stream the video using the specified FFmpeg command.&#xA;I provided the command and the input file (video.mp4).&#xA;However, the command resulted in errors related to opening the output file for streaming.

    &#xA;

    I expected the FFmpeg command to successfully stream the video over TCP to the specified address and port (192.168.24.3:2000).&#xA;I expected the command to run without errors and for the video stream to be accessible at the specified destination.

    &#xA;