Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (103)

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

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

Sur d’autres sites (8129)

  • Cannot Register my dll using regsrv32 but only with Release build, Debug build works ok

    4 février 2020, par kirit

    I am having same problem as this question.

    I have my own Dlls that uses ffmpeg (Ver 0.6.3) dlls (AVCODEC-52.dll, AVFormat-52.dll,.. all build under MinGW using mingw-get-inst-20110530) ..
    I have the dlls and libs in my VC2008 project and it all builds ok in both debug and release mode and also runs ok... but if i try to register using regsvr32 it errors out for release Only (Debug works ok).
    Checking my dll using dependence walker tool shows that this dlls are of readish color and shows CoCreateInstance, CoInitialize ...(i think this are part of old32.dll) are missing..

    Based on the above link looks like some kind of build issue with ffmpeg under minGW.. but details of the solutions is missing.. any help or suggestion are well come.

  • FFMPEG - Creating multiple copies of a video with different audio channels. Can't hear channel 4

    13 février 2020, par Gabriel_ris

    I’m working on a project where I need to have 6 copies of a video, where each copy only plays one audio channel.
    The original video has only 2 channel, with the same audio on each channel.
    First I had to copy one of the channels into the other 4 missing channels.
    I’m new to ffmpeg, I did some research and I used this command :

    ffmpeg -i input.mp4 -map_channel 0.1.0 -map_channel 0.1.0 -map_channel
    0.1.0 -map_channel 0.1.0 -map_channel 0.1.0 -map_channel 0.1.0 -c:v copy output.mp4

    That helped to turn the video into a 6 channels one. Then, I revised the command for each channel :

    ffmpeg -i input.mp4 -map_channel 0.1.0 -map_channel -1 -map_channel -1
    -map_channel -1 -map_channel -1 -map_channel -1 -c:v copy output_channel1.mp4

    ffmpeg -i input.mp4 -map_channel -1 -map_channel 0.1.0 -map_channel -1
    -map_channel -1 -map_channel -1 -map_channel -1 -c:v copy output_channel2.mp4

    and so on.

    All the videos worked perfectly on their own channels, but channel 4, in which I can only hear some low noise.
    I read channel 4 is used for low frequency audio in 5.1 configuration, which might be the problem.
    I tried specifying the channel layout to 6.0, increasing the volume, disabling guess_layout_max, but nothing worked.
    As I said, I’m new to ffmpeg, and probably there is a much better way to do it. I’d appreciate if someone here could help me.
    Thanks !

  • Some Java Process objects finish and close, but some finish and stall

    28 mars 2020, par brendanw36

    My program uses ProcessBuilder to make various calls to ffmpeg. My problem is that with certain commands I can create a Process, have it run, and when it is done it will terminate/exit/close itself and the program will end whereas other commands will run and create a finished output (in my case it will finish encoding a file with no corruption or anything at the end of the video), but won’t close at which point I need to force terminate the program. I have tested the ffmpeg commands that I am running in Windows Command Prompt and they all run fine without need for user input or anything. I will show some examples of commands that do and don’t work, but ultimately what I need is a way to tell why certain Processes do and don’t work. You probably don’t even need to read the rest of this post if you know the inner workings of the Process class better than I do.

    How I create my processes :

    ProcessBuilder pb = new ProcessBuilder(commandGoesHere);
    Process p = pb.start();
    p.waitFor();

    Works :
    ffmpeg -i test.y4m -f segment -segment_times timecodeList .temp/sgmnt_%d.y4m

    This command takes a y4m(raw video format/large file size/1.7 GB for 53s of 720p video) and cuts it in to chunks.

    Doesn’t work (sometimes) :
    ffmpeg -i chunkname.y4m outputName.mkv

    This command takes the chunked video and encodes it as h.264/AVC video. When I create a process with this command it only works if the chunk is small in which case the Process will start, do its work, and close.

    Doesn’t work ever :
    ffmpeg -i test.mkv -c:v copy -f segment -segment_times timecodeList .temp/sgmnt_%d.mkv

    This command takes and h.264/AVC input video and cut it in to chunks, but this one doesn’t terminate/exit/close when it’s done. I’m forced to terminate the program which I do after seeing the Process’s CPU utilization drop to 0% in Task Manager. When I force terminate the program and check the output folder, all the chunks are there and not corrupted so I know it finished running successfully.