Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (112)

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

  • doc/ffmpeg : update example command line for IAMF muxing

    4 février, par James Almer
    doc/ffmpeg : update example command line for IAMF muxing
    

    Missed in 8f6a1a06a692f39abde24e09fecc3de26935657d.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/ffmpeg.texi
  • sh : -c : line 0 : syntax error near unexpected token `('

    26 février 2017, par asad

    Hi iam using following c++ code to create ffmpeg command. When i run this command in bash using linux popen, following error occurs. If i put the command directly in bash, it works fine and doesn’t give any other. Please help me figure out the cause of it.

    C++ code to generate command :

    const string VideoCreator::GetFFMPEG_Silent_Audio_Merge_command()
    {
       stringstream command;
       command &lt;&lt; FFMPEG_BINARY  &lt;&lt; " -nostdin -loglevel error -y -threads 0 -f concat -safe 0 -i &lt;(echo file /home/ec2-user/videoData/DnXptC4ld8/FADING_OUT_VOLUP_Blrt_Decrypt_1ed5c4d569d8a1f23428b65217f65eaf_audio.m4a; echo file /home/ec2-user/videocreation/temp/silence.m4a) -c copy " &lt;&lt; _outputAudioWithSilence;// &lt;&lt; " 2> " &lt;&lt; _ffmpeg_log_file;
       std::cout &lt;&lt; "\n Command = " &lt;&lt; command.str() &lt;&lt; "\n";
       return command.str();
    }

    Bash error :

    sh: -c: line 0: syntax error near unexpected token `('
    sh: -c: line 0: `/opt/ffmpeg/ffmpeg -nostdin -loglevel error -y -threads 0 -f concat -safe 0 -i &lt;(echo file /home/ec2-user/videoData/DnXptC4ld8/FADING_OUT_VOLUP_Blrt_Decrypt_1ed5c4d569d8a1f23428b65217f65eaf_audio.m4a; echo file /home/ec2-user/videocreation/temp/silence.m4a) -c copy /home/ec2-user/videoData/DnXptC4ld8/WITH_SILENCE_FADING_OUT_VOLUP_Blrt_Decrypt_1ed5c4d569d8a1f23428b65217f65eaf_audio.m4a'
  • How do I crop a rectangle from a video, from the command-line ?

    21 avril 2017, par android.weasel

    I’m capturing a video of a test-run on an iOS simulator, and I have an automated script to tell QuickTime to record only a rectangle of video.

    This works well on the desktop displaying to the physically connected screen, but for remote desktop users, the resulting video is a garbled version of bits of the primary screen instead of the rectangle of the secondary user’s view.

    It’s even worse for a Mac Pro running VMs : ALL users get a blank, black rectangle. This obtained for Yosemite and still obtains for ElCap.

    Oddly, capturing a full screen works properly for all sessions, so I could record the whole thing, and then crop out the window I want - it doesn’t move.

    Is there a good command-line tool that can crop a rectangle from a (full screen) video stream ? I looked at ffmpeg, but couldn’t see it listed.

    Thanks